Browse Source

Fix small exception typos in Lib (#818)

pull/828/head
Jim Fasarakis-Hilliard 9 years ago
committed by Łukasz Langa
parent
commit
1e73dbbc29
  1. 4
      Lib/_pyio.py
  2. 2
      Lib/asyncio/windows_utils.py

4
Lib/_pyio.py

@ -766,7 +766,7 @@ class _BufferedIOMixin(BufferedIOBase):
def flush(self):
if self.closed:
raise ValueError("flush of closed file")
raise ValueError("flush on closed file")
self.raw.flush()
def close(self):
@ -1214,7 +1214,7 @@ class BufferedWriter(_BufferedIOMixin):
def _flush_unlocked(self):
if self.closed:
raise ValueError("flush of closed file")
raise ValueError("flush on closed file")
while self._write_buf:
try:
n = self.raw.write(self._write_buf)

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

Loading…
Cancel
Save