summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_generators.py27
1 files changed, 15 insertions, 12 deletions
diff --git a/Lib/test/test_generators.py b/Lib/test/test_generators.py
index 2476a27..41629d3 100644
--- a/Lib/test/test_generators.py
+++ b/Lib/test/test_generators.py
@@ -137,6 +137,21 @@ Generators can call other generators:
pep_tests = """
+Specification: Yield
+
+ Restriction: A generator cannot be resumed while it is actively
+ running:
+
+ >>> def g():
+ ... i = me.next()
+ ... yield i
+ >>> me = g()
+ >>> me.next()
+ Traceback (most recent call last):
+ ...
+ File "<string>", line 2, in g
+ ValueError: generator already executing
+
Specification: Return
Note that return isn't always equivalent to raising StopIteration: the
@@ -310,18 +325,6 @@ in try/except, not like a return.
>>> list(g())
[1, 2, 3]
-A generator can't be resumed while it's already running.
-
->>> def g():
-... i = me.next()
-... yield i
->>> me = g()
->>> me.next()
-Traceback (most recent call last):
- ...
- File "<string>", line 2, in g
-ValueError: generator already executing
-
Next one was posted to c.l.py.
>>> def gcomb(x, k):