| commit | de3a1363a9eb94b39f596d3685396aea216266a1 | [log] [tgz] |
|---|---|---|
| author | Guido van Rossum <guido@python.org> | Fri Nov 29 09:29:00 2013 -0800 |
| committer | Guido van Rossum <guido@python.org> | Fri Nov 29 09:29:00 2013 -0800 |
| tree | 07d02272216a0806316366e8b1867466218e9fbd | |
| parent | d2476c6e4bfa0666343643277e54f8d89015cded [diff] |
asyncio: Add 'shield' to __all__.
diff --git a/Lib/asyncio/tasks.py b/Lib/asyncio/tasks.py index 2a21a4b..999e962 100644 --- a/Lib/asyncio/tasks.py +++ b/Lib/asyncio/tasks.py
@@ -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