summaryrefslogtreecommitdiffstats
path: root/Lib/io.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/io.py')
-rw-r--r--Lib/io.py15
1 files changed, 11 insertions, 4 deletions
diff --git a/Lib/io.py b/Lib/io.py
index 0054d42..4dfab22 100644
--- a/Lib/io.py
+++ b/Lib/io.py
@@ -229,8 +229,9 @@ class IOBase:
if not self.__closed:
try:
self.flush()
- finally:
- self.__closed = True
+ except IOError:
+ pass # If flush() fails, just give up
+ self.__closed = True
def __del__(self) -> None:
"""Destructor. Calls close()."""
@@ -598,7 +599,10 @@ class _BufferedIOMixin(BufferedIOBase):
def close(self):
if not self.closed:
- self.flush()
+ try:
+ self.flush()
+ except IOError:
+ pass # If flush() fails, just give up
self.raw.close()
### Inquiries ###
@@ -1048,7 +1052,10 @@ class TextIOWrapper(TextIOBase):
self._telling = self._seekable
def close(self):
- self.flush()
+ try:
+ self.flush()
+ except:
+ pass # If flush() fails, just give up
self.buffer.close()
@property