From c92f6226d7e83a93a8ab535d3e964ae50c2c5272 Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Sun, 11 Sep 2011 12:55:34 -0400 Subject: [PATCH] add ChainMap to __all__ (closes #12959) Thanks July Tikhonov. --- Lib/collections/__init__.py | 2 +- Misc/NEWS | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Lib/collections/__init__.py b/Lib/collections/__init__.py index 2007e6881699..e5e027700a4c 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. diff --git a/Misc/NEWS b/Misc/NEWS index ef12cfda024d..d94f33c73fe0 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -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. -- 2.47.3