mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-08 04:54:47 +08:00
Fix typos: termina[ta]te().
This commit is contained in:
@@ -59,7 +59,7 @@ class Popen:
|
||||
# Return str/bytes
|
||||
def communicate(self, input: str = ...) -> Tuple[str, str]: ...
|
||||
def send_signal(self, signal: int) -> None: ...
|
||||
def terminatate(self) -> None: ...
|
||||
def terminate(self) -> None: ...
|
||||
def kill(self) -> None: ...
|
||||
def __enter__(self) -> 'Popen': ...
|
||||
def __exit__(self, type, value, traceback) -> bool: ...
|
||||
|
||||
@@ -32,7 +32,7 @@ class Process:
|
||||
@coroutine
|
||||
def wait(self) -> int: ...
|
||||
def send_signal(self, signal: int) -> None: ...
|
||||
def terminatate(self) -> None: ...
|
||||
def terminate(self) -> None: ...
|
||||
def kill(self) -> None: ...
|
||||
@coroutine
|
||||
def communicate(self, input: bytes = ...) -> Tuple[bytes, bytes]: ...
|
||||
|
||||
@@ -62,7 +62,7 @@ class Popen:
|
||||
# Return str/bytes
|
||||
def communicate(self, input=...) -> Tuple[Any, Any]: ...
|
||||
def send_signal(self, signal: int) -> None: ...
|
||||
def terminatate(self) -> None: ...
|
||||
def terminate(self) -> None: ...
|
||||
def kill(self) -> None: ...
|
||||
def __enter__(self) -> 'Popen': ...
|
||||
def __exit__(self, type, value, traceback) -> bool: ...
|
||||
|
||||
Reference in New Issue
Block a user