summaryrefslogtreecommitdiffstats
path: root/Lib/asyncio
diff options
context:
space:
mode:
authorJim Fasarakis-Hilliard <d.f.hilliard@gmail.com>2017-03-26 20:59:08 (GMT)
committerƁukasz Langa <lukasz@langa.pl>2017-03-26 20:59:08 (GMT)
commit1e73dbbc29c96d0739ffef92db36f63aa1aa30da (patch)
treee335163e9dd6874fddcfb584c661679f26a5b0cb /Lib/asyncio
parentf8beb9831acd5cf80b9c56aea5864e16118c5400 (diff)
downloadcpython-1e73dbbc29c96d0739ffef92db36f63aa1aa30da.zip
cpython-1e73dbbc29c96d0739ffef92db36f63aa1aa30da.tar.gz
cpython-1e73dbbc29c96d0739ffef92db36f63aa1aa30da.tar.bz2
Fix small exception typos in Lib (#818)
Diffstat (limited to 'Lib/asyncio')
-rw-r--r--Lib/asyncio/windows_utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/asyncio/windows_utils.py b/Lib/asyncio/windows_utils.py
index 7c63fb9..d65ea17 100644
--- a/Lib/asyncio/windows_utils.py
+++ b/Lib/asyncio/windows_utils.py
@@ -149,7 +149,7 @@ class PipeHandle:
def fileno(self):
if self._handle is None:
- raise ValueError("I/O operatioon on closed pipe")
+ raise ValueError("I/O operation on closed pipe")
return self._handle
def close(self, *, CloseHandle=_winapi.CloseHandle):