mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-01-26 21:08:59 +08:00
Change logging signatures to allow unicode (#150)
This commit is contained in:
committed by
Guido van Rossum
parent
088fd393b8
commit
2f59de4713
@@ -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: ...
|
||||
|
||||
Reference in New Issue
Block a user