Fix threading.pyi issues (#12304)

This commit is contained in:
Max Muoto
2024-07-10 00:44:55 -05:00
committed by GitHub
parent 465fdaad48
commit f698bb67fa
3 changed files with 5 additions and 8 deletions

View File

@@ -61,7 +61,7 @@ if sys.version_info >= (3, 10):
def gettrace() -> TraceFunction | None: ...
def getprofile() -> ProfileFunction | None: ...
def stack_size(size: int = ...) -> int: ...
def stack_size(size: int = 0, /) -> int: ...
TIMEOUT_MAX: float