summaryrefslogtreecommitdiff
path: root/tests/basics
diff options
context:
space:
mode:
Diffstat (limited to 'tests/basics')
-rw-r--r--tests/basics/gen_yield_from.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/basics/gen_yield_from.py b/tests/basics/gen_yield_from.py
index 5196b48d2..4e68aec63 100644
--- a/tests/basics/gen_yield_from.py
+++ b/tests/basics/gen_yield_from.py
@@ -40,3 +40,16 @@ def gen6():
g = gen6()
print(list(g))
+
+# StopIteration from within a Python function, within a native iterator (map), within a yield from
+def gen7(x):
+ if x < 3:
+ return x
+ else:
+ raise StopIteration(444)
+
+def gen8():
+ print((yield from map(gen7, range(100))))
+
+g = gen8()
+print(list(g))