This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author serhiy.storchaka
Recipients bquinlan, pitrou, serhiy.storchaka, terry.reedy
Date 2014-10-02.16:00:50
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1412265650.84.0.572603137857.issue5700@psf.upfronthosting.co.za>
In-reply-to
Content
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
History
Date User Action Args
2014-10-02 16:00:50serhiy.storchakasetrecipients: + serhiy.storchaka, terry.reedy, bquinlan, pitrou
2014-10-02 16:00:50serhiy.storchakasetmessageid: <1412265650.84.0.572603137857.issue5700@psf.upfronthosting.co.za>
2014-10-02 16:00:50serhiy.storchakalinkissue5700 messages
2014-10-02 16:00:50serhiy.storchakacreate