commit | d2f7680b8fb53227e365e4ffef727c386b8a644c | [log] [tgz] |
---|---|---|
author | Georg Brandl <georg@python.org> | Mon Mar 03 21:22:47 2008 +0000 |
committer | Georg Brandl <georg@python.org> | Mon Mar 03 21:22:47 2008 +0000 |
tree | 94ca8d715d8a476304312373e842046373a6ed6a | |
parent | 26bc177fe6b1710cc306adee3be17145db4686ca [diff] |
Actually import itertools.
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 @@ """ from abc import ABCMeta, abstractmethod +import itertools __all__ = ["Hashable", "Iterable", "Iterator", "Sized", "Container", "Callable",