mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-02-11 20:51:42 +08:00
Add mixins module to asyncio (#6789)
This commit is contained in:
@@ -62,6 +62,7 @@ array: 2.7-
|
||||
ast: 2.7-
|
||||
asynchat: 2.7-
|
||||
asyncio: 3.4-
|
||||
asyncio.mixins: 3.10-
|
||||
asyncio.compat: 3.4-3.6
|
||||
asyncio.exceptions: 3.8-
|
||||
asyncio.format_helpers: 3.7-
|
||||
|
||||
7
stdlib/asyncio/mixins.pyi
Normal file
7
stdlib/asyncio/mixins.pyi
Normal file
@@ -0,0 +1,7 @@
|
||||
import threading
|
||||
from typing import NoReturn
|
||||
|
||||
_global_lock: threading.Lock
|
||||
|
||||
class _LoopBoundMixin:
|
||||
def __init__(self, *, loop: NoReturn = ...) -> None: ...
|
||||
Reference in New Issue
Block a user