-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Interned frequently-used strings in generic code
- Loading branch information
1 parent
c9a31b0
commit f4e6d39
Showing
2 changed files
with
27 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import asyncio | ||
|
||
async def forward(gen, sender): | ||
async for item in gen: | ||
should_continue = sender.send(item) | ||
|
||
if asyncio.iscoroutine(should_continue): | ||
should_continue = await should_continue | ||
|
||
if should_continue: | ||
continue | ||
else: | ||
break | ||
|
||
sender.close() |