Add mixins module to asyncio (#6789)

This commit is contained in:
Nikita Sobolev
2022-01-25 14:53:55 +03:00
committed by GitHub
parent fab2a47f9b
commit bfda5c640b
6 changed files with 12 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
import threading
from typing import NoReturn
_global_lock: threading.Lock
class _LoopBoundMixin:
def __init__(self, *, loop: NoReturn = ...) -> None: ...