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
Following #3588, coroutines should issue a warning when they are never awaited, to mimic Python coroutine behavior.
However, the best place to put this warning seems to be in __del__, so it would requires #2479 before.
"Never awaited" means (for Python coroutines) that the coroutine has not been polled at least once. Regarding current coroutine implementation, it means that waker field is still None when __del__ is executed.