[Python-checkins] r73488 - python/trunk/Lib/test/test_generators.py

benjamin.peterson python-checkins at python.org
Sat Jun 20 00:16:28 CEST 2009


Author: benjamin.peterson
Date: Sat Jun 20 00:16:28 2009
New Revision: 73488

Log:
show that this one isn't used

Modified:
   python/trunk/Lib/test/test_generators.py

Modified: python/trunk/Lib/test/test_generators.py
==============================================================================
--- python/trunk/Lib/test/test_generators.py	(original)
+++ python/trunk/Lib/test/test_generators.py	Sat Jun 20 00:16:28 2009
@@ -960,7 +960,7 @@
 # iterators have side-effects, so that which values *can* be generated at
 # each slot depend on the values iterated at previous slots.
 
-def conjoin(gs):
+def simple_conjoin(gs):
 
     values = [None] * len(gs)
 


More information about the Python-checkins mailing list