[Python-checkins] r78036 - python/trunk/Lib/collections.py

georg.brandl python-checkins at python.org
Sat Feb 6 23:49:47 CET 2010


Author: georg.brandl
Date: Sat Feb  6 23:49:47 2010
New Revision: 78036

Log:
Remove unused import.

Modified:
   python/trunk/Lib/collections.py

Modified: python/trunk/Lib/collections.py
==============================================================================
--- python/trunk/Lib/collections.py	(original)
+++ python/trunk/Lib/collections.py	Sat Feb  6 23:49:47 2010
@@ -12,7 +12,7 @@
 import heapq as _heapq
 from weakref import proxy as _proxy
 from itertools import repeat as _repeat, chain as _chain, starmap as _starmap, \
-                      ifilter as _ifilter, imap as _imap, izip as _izip
+                      ifilter as _ifilter, imap as _imap
 
 ################################################################################
 ### OrderedDict


More information about the Python-checkins mailing list