mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-06 12:14:27 +08:00
asyncio.run: fix type of debug (#4567)
This commit is contained in:
@@ -1,7 +1,10 @@
|
||||
import sys
|
||||
|
||||
if sys.version_info >= (3, 7):
|
||||
from typing import Awaitable, TypeVar
|
||||
from typing import Awaitable, Optional, TypeVar
|
||||
|
||||
_T = TypeVar("_T")
|
||||
def run(main: Awaitable[_T], *, debug: bool = ...) -> _T: ...
|
||||
if sys.version_info >= (3, 8):
|
||||
def run(main: Awaitable[_T], *, debug: Optional[bool] = ...) -> _T: ...
|
||||
else:
|
||||
def run(main: Awaitable[_T], *, debug: bool = ...) -> _T: ...
|
||||
|
||||
@@ -13,6 +13,8 @@ asyncio.events.AbstractEventLoop.sock_sendfile
|
||||
asyncio.futures.Future.__init__
|
||||
asyncio.futures.Future._callbacks
|
||||
asyncio.proactor_events._ProactorBasePipeTransport.__del__
|
||||
asyncio.run # Bugfix involving this was backported to 3.8
|
||||
asyncio.runners.run # It just hasn't been released yet
|
||||
asyncio.threads # Added in Python 3.9
|
||||
builtins.dict.get
|
||||
collections.AsyncGenerator.ag_await
|
||||
|
||||
Reference in New Issue
Block a user