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

@@ -113,7 +113,7 @@ class BaseContext:
def set_forkserver_preload(self, module_names: list[str]) -> None: ...
if sys.platform != "win32":
@overload
def get_context(self, method: None = ...) -> DefaultContext: ...
def get_context(self, method: None = None) -> DefaultContext: ...
@overload
def get_context(self, method: Literal["spawn"]) -> SpawnContext: ...
@overload