MCPcopy Index your code
hub / github.com/python/cpython / _get_event_loop_policy

Function _get_event_loop_policy

Lib/asyncio/events.py:798–802  ·  view source on GitHub ↗

Get the current event loop policy.

()

Source from the content-addressed store, hash-verified

796
797
798def _get_event_loop_policy():
799 """Get the current event loop policy."""
800 if _event_loop_policy is None:
801 _init_event_loop_policy()
802 return _event_loop_policy
803
804def get_event_loop_policy():
805 warnings._deprecated('asyncio.get_event_loop_policy', remove=(3, 16))

Callers 4

get_event_loop_policyFunction · 0.85
get_event_loopFunction · 0.85
set_event_loopFunction · 0.85
new_event_loopFunction · 0.85

Calls 1

_init_event_loop_policyFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…