]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Export asyncio.iscoroutine[function].
authorGuido van Rossum <guido@python.org>
Sat, 28 Dec 2013 18:06:40 +0000 (08:06 -1000)
committerGuido van Rossum <guido@python.org>
Sat, 28 Dec 2013 18:06:40 +0000 (08:06 -1000)
Lib/asyncio/tasks.py

index cd9718f534a71210139da9c576a3ea448794fdba..406bcb936867aba1a23de99b430ae4f4bdb0f221 100644 (file)
@@ -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',