summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2009-06-19 22:16:28 (GMT)
committerBenjamin Peterson <benjamin@python.org>2009-06-19 22:16:28 (GMT)
commit5fa09e3eb592ea4658afbc45f84234106ed47a63 (patch)
treebb3e436b9eadaaee63370094fa2f884f10407c2d
parent9c5e4115ab73d34fcf8ac361fecd2d45c76f5ea7 (diff)
downloadcpython-5fa09e3eb592ea4658afbc45f84234106ed47a63.zip
cpython-5fa09e3eb592ea4658afbc45f84234106ed47a63.tar.gz
cpython-5fa09e3eb592ea4658afbc45f84234106ed47a63.tar.bz2
show that this one isn't used
-rw-r--r--Lib/test/test_generators.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_generators.py b/Lib/test/test_generators.py
index f4c9655..7050052 100644
--- a/Lib/test/test_generators.py
+++ b/Lib/test/test_generators.py
@@ -960,7 +960,7 @@ Lambdas shouldn't have their usual return behavior.
# 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)