asyncio: Add 'shield' to __all__.

This commit is contained in:
Guido van Rossum 2013-11-29 09:29:00 -08:00
parent d2476c6e4b
commit de3a1363a9

View file

@ -3,7 +3,7 @@
__all__ = ['coroutine', 'Task',
'FIRST_COMPLETED', 'FIRST_EXCEPTION', 'ALL_COMPLETED',
'wait', 'wait_for', 'as_completed', 'sleep', 'async',
'gather',
'gather', 'shield',
]
import collections