diff options
author | Georg Brandl <georg@python.org> | 2008-03-03 21:22:47 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-03-03 21:22:47 (GMT) |
commit | d2f7680b8fb53227e365e4ffef727c386b8a644c (patch) | |
tree | 94ca8d715d8a476304312373e842046373a6ed6a /Lib/_abcoll.py | |
parent | 26bc177fe6b1710cc306adee3be17145db4686ca (diff) | |
download | cpython-d2f7680b8fb53227e365e4ffef727c386b8a644c.zip cpython-d2f7680b8fb53227e365e4ffef727c386b8a644c.tar.gz cpython-d2f7680b8fb53227e365e4ffef727c386b8a644c.tar.bz2 |
Actually import itertools.
Diffstat (limited to 'Lib/_abcoll.py')
-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 d25d521..b8f6fb9 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", |