summaryrefslogtreecommitdiff
path: root/Lib/asyncio
diff options
context:
space:
mode:
authorXtreak <tir.karthi@gmail.com>2019-06-03 04:42:33 +0530
committerPetr Viktorin <encukou@gmail.com>2019-06-03 01:12:33 +0200
commit0d70227e419ab78c44d81b4ea6ae8aaf769470e6 (patch)
tree7fcafd5e2f1291c61989b119eff03ce7113bc928 /Lib/asyncio
parente584cbff1ea78e700cf9943d50467e3b58301ccc (diff)
downloadcpython-git-0d70227e419ab78c44d81b4ea6ae8aaf769470e6.tar.gz
Fix typos in docs and docstrings (GH-13745)
Diffstat (limited to 'Lib/asyncio')
-rw-r--r--Lib/asyncio/unix_events.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/asyncio/unix_events.py b/Lib/asyncio/unix_events.py
index 6714542e4e..b943845d93 100644
--- a/Lib/asyncio/unix_events.py
+++ b/Lib/asyncio/unix_events.py
@@ -193,7 +193,7 @@ class _UnixSelectorEventLoop(selector_events.BaseSelectorEventLoop):
# prevents subprocess execution if the watcher
# is not ready to handle it.
raise RuntimeError("asyncio.get_child_watcher() is not activated, "
- "subproccess support is not installed.")
+ "subprocess support is not installed.")
waiter = self.create_future()
transp = _UnixSubprocessTransport(self, protocol, args, shell,
stdin, stdout, stderr, bufsize,