summaryrefslogtreecommitdiff
path: root/Lib/test/test_collections.py
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2011-02-26 01:02:51 +0000
committerRaymond Hettinger <python@rcn.com>2011-02-26 01:02:51 +0000
commit2886808d3809d69a6e9b360380080140b95df0b6 (patch)
tree9a754243a225f90ba686563dcc264b55ab7aa226 /Lib/test/test_collections.py
parent0bb02cce6a0b0a0097edbdf892ad384ba1c66978 (diff)
downloadcpython-2886808d3809d69a6e9b360380080140b95df0b6.tar.gz
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 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):