You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jun 25, 2018. It is now read-only.
loop.current_task() was never a part of asyncio API.
Starting from 3.7 third party loops can use dedicated calls for custom task implementation: asyncio._register_task, ``asyncio._unregister_task, asyncio._enter_task`, `asyncio._leave_task`.
The API calls are started from underscore to emphasize these very low level position (should be used by libraries like tokio only) but they are a part of of official API.
The text was updated successfully, but these errors were encountered:
loop.current_task()
was never a part of asyncio API.Starting from 3.7 third party loops can use dedicated calls for custom task implementation:
asyncio._register_task
, ``asyncio._unregister_task,
asyncio._enter_task`, `asyncio._leave_task`.The API calls are started from underscore to emphasize these very low level position (should be used by libraries like tokio only) but they are a part of of official API.
The text was updated successfully, but these errors were encountered: