Serhiy Storchaka added the comment:

There is complete implementation of FileIO in pure Python in issue21859. It is 
free from this bug.

>>> import _pyio as io
>>> class MyIO(io.FileIO):
...     def flush(self):
...             print('closed:', self.closed)
... 
>>> f = MyIO('test.out', 'wb')
>>> f.close()
closed: False

----------
nosy: +serhiy.storchaka

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue5700>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to