Change logging signatures to allow unicode (#150)

This commit is contained in:
Michael R. Crusoe
2016-04-18 18:41:38 +02:00
committed by Guido van Rossum
parent 088fd393b8
commit 2f59de4713
2 changed files with 25 additions and 25 deletions

View File

@@ -57,7 +57,7 @@ class Popen:
def poll(self) -> int: ...
def wait(self) -> int: ...
# Return str/bytes
def communicate(self, input: str = ...) -> Tuple[str, str]: ...
def communicate(self, input: Union[str, unicode] = ...) -> Tuple[str, str]: ...
def send_signal(self, signal: int) -> None: ...
def terminate(self) -> None: ...
def kill(self) -> None: ...