diff options
author | Raymond Hettinger <python@rcn.com> | 2011-02-23 00:46:28 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2011-02-23 00:46:28 (GMT) |
commit | 57d1a887e7f99d596a9b083592f7734f7ee1a11c (patch) | |
tree | 81ff8ffa4529a16aef99084eb124b264888012e0 /Lib/test/test_collections.py | |
parent | bd475115c4fb0dda55f3d1f4443bff58abd1203f (diff) | |
download | cpython-57d1a887e7f99d596a9b083592f7734f7ee1a11c.zip cpython-57d1a887e7f99d596a9b083592f7734f7ee1a11c.tar.gz cpython-57d1a887e7f99d596a9b083592f7734f7ee1a11c.tar.bz2 |
Fix imports from collections.abc
Diffstat (limited to 'Lib/test/test_collections.py')
-rw-r--r-- | Lib/test/test_collections.py | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/Lib/test/test_collections.py b/Lib/test/test_collections.py index d785fcb..4eaa091 100644 --- a/Lib/test/test_collections.py +++ b/Lib/test/test_collections.py @@ -10,12 +10,13 @@ from random import randrange, shuffle import keyword import re import sys -from collections import Hashable, Iterable, Iterator -from collections import Sized, Container, Callable -from collections import Set, MutableSet -from collections import Mapping, MutableMapping, KeysView, ItemsView, UserDict -from collections import Sequence, MutableSequence -from collections import ByteString +from collections import UserDict +from collections.abc import Hashable, Iterable, Iterator +from collections.abc import Sized, Container, Callable +from collections.abc import Set, MutableSet +from collections.abc import Mapping, MutableMapping, KeysView, ItemsView +from collections.abc import Sequence, MutableSequence +from collections.abc import ByteString TestNT = namedtuple('TestNT', 'x y z') # type used for pickle tests @@ -507,7 +508,7 @@ class TestCollectionABCs(ABCTestCase): def test_issue_4920(self): # MutableSet.pop() method did not work - class MySet(collections.MutableSet): + class MySet(MutableSet): __slots__=['__s'] def __init__(self,items=None): if items is None: @@ -553,7 +554,7 @@ class TestCollectionABCs(ABCTestCase): self.assertTrue(issubclass(sample, Mapping)) self.validate_abstract_methods(Mapping, '__contains__', '__iter__', '__len__', '__getitem__') - class MyMapping(collections.Mapping): + class MyMapping(Mapping): def __len__(self): return 0 def __getitem__(self, i): |