diff options
author | Benjamin Peterson <benjamin@python.org> | 2011-09-11 16:55:34 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2011-09-11 16:55:34 (GMT) |
commit | c92f6226d7e83a93a8ab535d3e964ae50c2c5272 (patch) | |
tree | dfe95cda9f95f94401e289d304c760cc36d17bb9 /Lib/collections | |
parent | d964ee9cd53df75ffb1efa36da7c576c1aa04591 (diff) | |
download | cpython-c92f6226d7e83a93a8ab535d3e964ae50c2c5272.zip cpython-c92f6226d7e83a93a8ab535d3e964ae50c2c5272.tar.gz cpython-c92f6226d7e83a93a8ab535d3e964ae50c2c5272.tar.bz2 |
add ChainMap to __all__ (closes #12959)
Thanks July Tikhonov.
Diffstat (limited to 'Lib/collections')
-rw-r--r-- | Lib/collections/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/collections/__init__.py b/Lib/collections/__init__.py index 2007e68..e5e0277 100644 --- a/Lib/collections/__init__.py +++ b/Lib/collections/__init__.py @@ -1,5 +1,5 @@ __all__ = ['deque', 'defaultdict', 'namedtuple', 'UserDict', 'UserList', - 'UserString', 'Counter', 'OrderedDict'] + 'UserString', 'Counter', 'OrderedDict', 'ChainMap'] # For backwards compatibility, continue to make the collections ABCs # available through the collections module. |