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 amaury.forgeotdarc
Recipients amaury.forgeotdarc, sbt
Date 2012-09-10.14:44:07
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1347288248.3.0.726604114095.issue15904@psf.upfronthosting.co.za>
In-reply-to
Content
Is it also the case for other file operations?  Here is a list that may use a closed FILE object:
    f.write('something')
    f.read(1)
    print >>f, 'something'
    f.seek(0)
    f.tell()
    f.truncate(0)
    f.flush()
    f.isatty()
    f.readlines()
    f.writelines(['x'])
    list(f)
History
Date User Action Args
2012-09-10 14:44:08amaury.forgeotdarcsetrecipients: + amaury.forgeotdarc, sbt
2012-09-10 14:44:08amaury.forgeotdarcsetmessageid: <1347288248.3.0.726604114095.issue15904@psf.upfronthosting.co.za>
2012-09-10 14:44:07amaury.forgeotdarclinkissue15904 messages
2012-09-10 14:44:07amaury.forgeotdarccreate