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
The functions `_PyGen_ActivateContext` and `_PyGen_DeactivateContext`
are called every time a value or exception is sent to a coroutine.
These functions are no-ops for dependent coroutines (coroutines
without their own independent context stack). Coroutines are
dependent by default, and the vast majority of performance-sensitive
coroutines are expected to be dependent, so move the check that
determines whether the coroutine is dependent or independent to an
inline function to speed up send calls.
0 commit comments