diff options
author | Guido van Rossum <guido@python.org> | 2013-12-28 08:06:40 -1000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2013-12-28 08:06:40 -1000 |
commit | 68816ef0583c2284f53126a198a011f7d1eff3a5 (patch) | |
tree | ba0da9c1658a18d39a43c4c9566ef4606b1eaa50 /Lib | |
parent | e6d2f159fcadd5fc336970110c49bba706b9787e (diff) | |
download | cpython-git-68816ef0583c2284f53126a198a011f7d1eff3a5.tar.gz |
Export asyncio.iscoroutine[function].
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/asyncio/tasks.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/asyncio/tasks.py b/Lib/asyncio/tasks.py index cd9718f534..406bcb9368 100644 --- a/Lib/asyncio/tasks.py +++ b/Lib/asyncio/tasks.py @@ -1,6 +1,7 @@ """Support for tasks, coroutines and the scheduler.""" __all__ = ['coroutine', 'Task', + 'iscoroutinefunction', 'iscoroutine', 'FIRST_COMPLETED', 'FIRST_EXCEPTION', 'ALL_COMPLETED', 'wait', 'wait_for', 'as_completed', 'sleep', 'async', 'gather', 'shield', |