diff options
author | Raymond Hettinger <python@rcn.com> | 2011-02-26 01:02:51 +0000 |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2011-02-26 01:02:51 +0000 |
commit | 2886808d3809d69a6e9b360380080140b95df0b6 (patch) | |
tree | 9a754243a225f90ba686563dcc264b55ab7aa226 /Lib/test/test_collections.py | |
parent | 0bb02cce6a0b0a0097edbdf892ad384ba1c66978 (diff) | |
download | cpython-2886808d3809d69a6e9b360380080140b95df0b6.tar.gz |
Issue #11297: Add collections.ChainMap()
Diffstat (limited to 'Lib/test/test_collections.py')
-rw-r--r-- | Lib/test/test_collections.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_collections.py b/Lib/test/test_collections.py index 35fe5ff19d..5c73d7816b 100644 --- a/Lib/test/test_collections.py +++ b/Lib/test/test_collections.py @@ -11,7 +11,7 @@ import keyword import re import sys from collections import UserDict -from collections import _ChainMap as ChainMap +from collections import ChainMap from collections.abc import Hashable, Iterable, Iterator from collections.abc import Sized, Container, Callable from collections.abc import Set, MutableSet @@ -21,7 +21,7 @@ from collections.abc import ByteString ################################################################################ -### _ChainMap (helper class for configparser and the string module) +### ChainMap (helper class for configparser and the string module) ################################################################################ class TestChainMap(unittest.TestCase): |