From 5fa09e3eb592ea4658afbc45f84234106ed47a63 Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Fri, 19 Jun 2009 22:16:28 +0000 Subject: [PATCH] show that this one isn't used --- Lib/test/test_generators.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/test_generators.py b/Lib/test/test_generators.py index f4c9655afb7..70500527d1c 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)