From 54ba6d9b7313ed7c2de5f1192961a78aec4f142e Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Wed, 9 Mar 2016 09:21:15 -0800 Subject: [PATCH] Fix typos: termina[ta]te(). --- stdlib/2.7/subprocess.pyi | 2 +- stdlib/3.4/asyncio/subprocess.pyi | 2 +- stdlib/3/subprocess.pyi | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/stdlib/2.7/subprocess.pyi b/stdlib/2.7/subprocess.pyi index eaa589269..4dc24666c 100644 --- a/stdlib/2.7/subprocess.pyi +++ b/stdlib/2.7/subprocess.pyi @@ -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: ... diff --git a/stdlib/3.4/asyncio/subprocess.pyi b/stdlib/3.4/asyncio/subprocess.pyi index 5d6ffce84..4ea6deb13 100644 --- a/stdlib/3.4/asyncio/subprocess.pyi +++ b/stdlib/3.4/asyncio/subprocess.pyi @@ -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]: ... diff --git a/stdlib/3/subprocess.pyi b/stdlib/3/subprocess.pyi index 03725bb0b..f9e0f720e 100644 --- a/stdlib/3/subprocess.pyi +++ b/stdlib/3/subprocess.pyi @@ -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: ...