Commit 1e73dbbc authored by Jim Fasarakis-Hilliard's avatar Jim Fasarakis-Hilliard Committed by Łukasz Langa

Fix small exception typos in Lib (#818)

parent f8beb983
...@@ -766,7 +766,7 @@ class _BufferedIOMixin(BufferedIOBase): ...@@ -766,7 +766,7 @@ class _BufferedIOMixin(BufferedIOBase):
def flush(self): def flush(self):
if self.closed: if self.closed:
raise ValueError("flush of closed file") raise ValueError("flush on closed file")
self.raw.flush() self.raw.flush()
def close(self): def close(self):
...@@ -1214,7 +1214,7 @@ class BufferedWriter(_BufferedIOMixin): ...@@ -1214,7 +1214,7 @@ class BufferedWriter(_BufferedIOMixin):
def _flush_unlocked(self): def _flush_unlocked(self):
if self.closed: if self.closed:
raise ValueError("flush of closed file") raise ValueError("flush on closed file")
while self._write_buf: while self._write_buf:
try: try:
n = self.raw.write(self._write_buf) n = self.raw.write(self._write_buf)
......
...@@ -149,7 +149,7 @@ class PipeHandle: ...@@ -149,7 +149,7 @@ class PipeHandle:
def fileno(self): def fileno(self):
if self._handle is None: if self._handle is None:
raise ValueError("I/O operatioon on closed pipe") raise ValueError("I/O operation on closed pipe")
return self._handle return self._handle
def close(self, *, CloseHandle=_winapi.CloseHandle): def close(self, *, CloseHandle=_winapi.CloseHandle):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment