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 martin.panter
Recipients martin.panter
Date 2014-04-19.03:23:48
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1397877829.49.0.0015217310404.issue21310@psf.upfronthosting.co.za>
In-reply-to
Content
>>> f = open("/dev/stdout", "w+b")  # Or any non-seekable file, pipe, etc
__main__:1: ResourceWarning: unclosed file <_io.FileIO name='/dev/stdout' mode='rb+'>
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
io.UnsupportedOperation: File or stream is not seekable.

It is mainly just the annoyance of the ResourceWarning, so nothing major. I think this was previously identified in Issue 18116, but it looks like that bug was side-stepped by removing an equivalent fdopen() call.

No ResourceWarning happens with an unbuffered file. I haven’t looked at the code but I guess the UnsupportedOperation might only be raised after trying to wrap the open FileIO object in a BufferedWriter object.
History
Date User Action Args
2014-04-19 03:23:49martin.pantersetrecipients: + martin.panter
2014-04-19 03:23:49martin.pantersetmessageid: <1397877829.49.0.0015217310404.issue21310@psf.upfronthosting.co.za>
2014-04-19 03:23:49martin.panterlinkissue21310 messages
2014-04-19 03:23:48martin.pantercreate