[Python-checkins] r61211 - python/trunk/Lib/_abcoll.py

georg.brandl python-checkins at python.org
Mon Mar 3 22:22:48 CET 2008


Author: georg.brandl
Date: Mon Mar  3 22:22:47 2008
New Revision: 61211

Modified:
   python/trunk/Lib/_abcoll.py
Log:
Actually import itertools.


Modified: python/trunk/Lib/_abcoll.py
==============================================================================
--- python/trunk/Lib/_abcoll.py	(original)
+++ python/trunk/Lib/_abcoll.py	Mon Mar  3 22:22:47 2008
@@ -9,6 +9,7 @@
 """
 
 from abc import ABCMeta, abstractmethod
+import itertools
 
 __all__ = ["Hashable", "Iterable", "Iterator",
            "Sized", "Container", "Callable",


More information about the Python-checkins mailing list