commit | c92f6226d7e83a93a8ab535d3e964ae50c2c5272 | [log] [tgz] |
---|---|---|
author | Benjamin Peterson <benjamin@python.org> | Sun Sep 11 12:55:34 2011 -0400 |
committer | Benjamin Peterson <benjamin@python.org> | Sun Sep 11 12:55:34 2011 -0400 |
tree | dfe95cda9f95f94401e289d304c760cc36d17bb9 | |
parent | d964ee9cd53df75ffb1efa36da7c576c1aa04591 [diff] [blame] |
add ChainMap to __all__ (closes #12959) Thanks July Tikhonov.
diff --git a/Misc/NEWS b/Misc/NEWS index ef12cfd..d94f33c 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -274,6 +274,8 @@ 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.