summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_collections.py
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2011-02-26 01:02:51 (GMT)
committerRaymond Hettinger <python@rcn.com>2011-02-26 01:02:51 (GMT)
commit9fe1ccfb5ac8c38be1439151712d3a8b3e7d87f2 (patch)
treeedf92add219a4a427b21157a626f1c0520fd644f /Lib/test/test_collections.py
parent692f038a5dad826254fe73050063862d76dc7baa (diff)
downloadcpython-9fe1ccfb5ac8c38be1439151712d3a8b3e7d87f2.zip
cpython-9fe1ccfb5ac8c38be1439151712d3a8b3e7d87f2.tar.gz
cpython-9fe1ccfb5ac8c38be1439151712d3a8b3e7d87f2.tar.bz2
Issue #11297: Add collections.ChainMap()
Diffstat (limited to 'Lib/test/test_collections.py')
-rw-r--r--Lib/test/test_collections.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_collections.py b/Lib/test/test_collections.py
index 35fe5ff..5c73d78 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):