Add __future__ imports to a new module

This commit is contained in:
Adrian Sampson 2016-11-16 11:58:18 -05:00
parent 6d3497c560
commit dafde564f3

View file

@ -12,9 +12,12 @@
#
# The above copyright notice and this permission notice shall be
# included in all copies or substantial portions of the Software.
"""Custom collections classes
"""Custom collections classes.
"""
from __future__ import division, absolute_import, print_function
class IdentityFallbackDict(dict):
"""A dictionary which is "transparent" (maps keys to themselves) for all