From: Georg Brandl Date: Mon, 3 Mar 2008 21:22:47 +0000 (+0000) Subject: Actually import itertools. X-Git-Tag: v2.6a2~411 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d2f7680b8fb53227e365e4ffef727c386b8a644c;p=thirdparty%2FPython%2Fcpython.git Actually import itertools. --- diff --git a/Lib/_abcoll.py b/Lib/_abcoll.py index d25d521290ac..b8f6fb94c87a 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",