Fix typos: termina[ta]te().

This commit is contained in:
Guido van Rossum
2016-03-09 09:21:15 -08:00
parent 5e0c61f8e0
commit 54ba6d9b73
3 changed files with 3 additions and 3 deletions

View File

@@ -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: ...

View File

@@ -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]: ...

View File

@@ -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: ...