mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-10 05:51:52 +08:00
Add default value to BaseContext.Pipe() (#3479)
This commit is contained in:
committed by
Sebastian Rittau
parent
cd45623ab7
commit
9c87b24041
@@ -38,7 +38,7 @@ class BaseContext(object):
|
||||
# TODO: change return to SyncManager once a stub exists in multiprocessing.managers
|
||||
def Manager(self) -> Any: ...
|
||||
# TODO: change return to Pipe once a stub exists in multiprocessing.connection
|
||||
def Pipe(self, duplex: bool) -> Any: ...
|
||||
def Pipe(self, duplex: bool = ...) -> Any: ...
|
||||
|
||||
def Barrier(self,
|
||||
parties: int,
|
||||
|
||||
Reference in New Issue
Block a user