mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-06 20:24:30 +08:00
Fix signature of multiprocessing.get_start_method (#3415)
This commit is contained in:
committed by
Sebastian Rittau
parent
87d7dd3d95
commit
9c724e9e60
@@ -80,5 +80,5 @@ def Manager() -> SyncManager: ...
|
||||
def set_forkserver_preload(module_names: List[str]) -> None: ...
|
||||
def get_all_start_methods() -> List[str]: ...
|
||||
def get_context(method: Optional[str] = ...) -> BaseContext: ...
|
||||
def get_start_method(allow_none: Optional[bool]) -> Optional[str]: ...
|
||||
def get_start_method(allow_none: bool = ...) -> Optional[str]: ...
|
||||
def set_start_method(method: str, force: Optional[bool] = ...) -> None: ...
|
||||
|
||||
Reference in New Issue
Block a user