diff options
author | Georg Brandl <georg@python.org> | 2008-03-03 21:22:47 +0000 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-03-03 21:22:47 +0000 |
commit | d2f7680b8fb53227e365e4ffef727c386b8a644c (patch) | |
tree | 94ca8d715d8a476304312373e842046373a6ed6a | |
parent | 26bc177fe6b1710cc306adee3be17145db4686ca (diff) | |
download | cpython-git-d2f7680b8fb53227e365e4ffef727c386b8a644c.tar.gz |
Actually import itertools.
-rw-r--r-- | Lib/_abcoll.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/_abcoll.py b/Lib/_abcoll.py index d25d521290..b8f6fb94c8 100644 --- a/Lib/_abcoll.py +++ b/Lib/_abcoll.py @@ -9,6 +9,7 @@ bootstrapping issues. Unit tests are in test_collections. """ from abc import ABCMeta, abstractmethod +import itertools __all__ = ["Hashable", "Iterable", "Iterator", "Sized", "Container", "Callable", |