Fix small exception typos in Lib (#818)

This commit is contained in:
Jim Fasarakis-Hilliard 2017-03-26 23:59:08 +03:00 committed by Łukasz Langa
parent f8beb9831a
commit 1e73dbbc29
2 changed files with 3 additions and 3 deletions

View file

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