add ChainMap to __all__ (closes #12959)

Thanks July Tikhonov.
This commit is contained in:
Benjamin Peterson 2011-09-11 12:55:34 -04:00
parent d964ee9cd5
commit c92f6226d7
2 changed files with 3 additions and 1 deletions

View file

@ -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.

View file

@ -274,6 +274,8 @@ Core and Builtins
Library
-------
- Issue #12959: Add collections.ChainMap to collections.__all__.
- Issue #12567: Add curses.unget_wch() function. Push a character so the next
get_wch() will return it.