summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2008-03-03 21:22:47 +0000
committerGeorg Brandl <georg@python.org>2008-03-03 21:22:47 +0000
commitd2f7680b8fb53227e365e4ffef727c386b8a644c (patch)
tree94ca8d715d8a476304312373e842046373a6ed6a
parent26bc177fe6b1710cc306adee3be17145db4686ca (diff)
downloadcpython-git-d2f7680b8fb53227e365e4ffef727c386b8a644c.tar.gz
Actually import itertools.
-rw-r--r--Lib/_abcoll.py1
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",