stdlib: add defaults for modules accessible on MacOS (#9659)

Ran stubdefaulter with standard options on a Mac.
This commit is contained in:
Jelle Zijlstra
2023-02-01 14:46:55 -08:00
committed by GitHub
parent bc463a0677
commit 0fc3a567fc
10 changed files with 67 additions and 67 deletions

View File

@@ -134,7 +134,7 @@ else:
else:
def pthread_sigmask(__how: int, __mask: Iterable[int]) -> set[_SIGNUM]: ...
def setitimer(__which: int, __seconds: float, __interval: float = ...) -> tuple[float, float]: ...
def setitimer(__which: int, __seconds: float, __interval: float = 0.0) -> tuple[float, float]: ...
def siginterrupt(__signalnum: int, __flag: bool) -> None: ...
def sigpending() -> Any: ...
if sys.version_info >= (3, 10): # argument changed in 3.10.2