539681fffd
From now on, all new tests must use underscore. Addresses issue #727.
15 lines
215 B
Python
15 lines
215 B
Python
def gen():
|
|
print("sent:", (yield 1))
|
|
yield 2
|
|
|
|
def gen2():
|
|
print((yield from gen()))
|
|
|
|
g = gen2()
|
|
next(g)
|
|
print("yielded:", g.send("val"))
|
|
try:
|
|
next(g)
|
|
except StopIteration:
|
|
print("StopIteration")
|