Add default value to BaseContext.Pipe() (#3479)

This commit is contained in:
cshesse
2019-11-23 07:12:45 -08:00
committed by Sebastian Rittau
parent cd45623ab7
commit 9c87b24041

View File

@@ -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,