summaryrefslogtreecommitdiffstats
path: root/Lib/asyncio
diff options
context:
space:
mode:
authorYury Selivanov <yury@magic.io>2016-11-08 00:00:46 (GMT)
committerYury Selivanov <yury@magic.io>2016-11-08 00:00:46 (GMT)
commit6ea2b8fc8be8725e1553fbbb159ea07806e9f41a (patch)
tree87e0c4dd9e553efb3b2f93b74247e5d065c892b1 /Lib/asyncio
parent49d6b8c0c3124e94728dd44aafc33becfb14415b (diff)
downloadcpython-6ea2b8fc8be8725e1553fbbb159ea07806e9f41a.zip
cpython-6ea2b8fc8be8725e1553fbbb159ea07806e9f41a.tar.gz
cpython-6ea2b8fc8be8725e1553fbbb159ea07806e9f41a.tar.bz2
Issue #28613: Expose asyncio._get_running_loop() and _set_running_loop()
Diffstat (limited to 'Lib/asyncio')
-rw-r--r--Lib/asyncio/events.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/asyncio/events.py b/Lib/asyncio/events.py
index 8575e2c..28a45fc 100644
--- a/Lib/asyncio/events.py
+++ b/Lib/asyncio/events.py
@@ -6,6 +6,7 @@ __all__ = ['AbstractEventLoopPolicy',
'get_event_loop_policy', 'set_event_loop_policy',
'get_event_loop', 'set_event_loop', 'new_event_loop',
'get_child_watcher', 'set_child_watcher',
+ '_set_running_loop', '_get_running_loop',
]
import functools