We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 66ee9ee commit 473229aCopy full SHA for 473229a
README.md
@@ -1601,14 +1601,14 @@ def reader(target):
1601
@coroutine
1602
def adder(target):
1603
while True:
1604
- item = (yield)
1605
- target.send(item + 100)
+ value = (yield)
+ target.send(value + 100)
1606
1607
1608
def printer():
1609
1610
1611
- print(item)
+ print(value)
1612
1613
reader(adder(printer())) # 100, 101, ..., 109
1614
```
0 commit comments