diff options
author | Yury Selivanov <yury@magic.io> | 2016-09-15 13:10:51 -0400 |
---|---|---|
committer | Yury Selivanov <yury@magic.io> | 2016-09-15 13:10:51 -0400 |
commit | f6d991d88502ee05da7c41217331ff024c634cbc (patch) | |
tree | b7bf5b67f00070efaf07a823b853de4e7a9b39c1 /Lib/asyncio/events.py | |
parent | e6265e92bfbc3cda50cc71f049552217db65bf94 (diff) | |
download | cpython-git-f6d991d88502ee05da7c41217331ff024c634cbc.tar.gz |
asyncio: Sync with the upstream
Diffstat (limited to 'Lib/asyncio/events.py')
-rw-r--r-- | Lib/asyncio/events.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Lib/asyncio/events.py b/Lib/asyncio/events.py index c48c5bed73..cc9a986b99 100644 --- a/Lib/asyncio/events.py +++ b/Lib/asyncio/events.py @@ -248,6 +248,10 @@ class AbstractEventLoop: """ raise NotImplementedError + def shutdown_asyncgens(self): + """Shutdown all active asynchronous generators.""" + raise NotImplementedError + # Methods scheduling callbacks. All these return Handles. def _timer_handle_cancelled(self, handle): |