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 r.david.murray
Recipients amaury.forgeotdarc, georg.brandl, r.david.murray, sdaoden, twouters
Date 2011-04-07.01:12:44
SpamBayes Score 8.343315e-05
Marked as misclassified No
Message-id <1302138766.28.0.0220049130326.issue11700@psf.upfronthosting.co.za>
In-reply-to
Content
Given your problem report wouldn't the simplest solution be to change the close method to be:

   if hasattr(self, '_file'):
       if hasattr(self._file, 'close'):
           self._file.close()
       del self._file

As for a test, it seems to me that adding a test to the appropriate existing cases that calls get_file and then closes the returned object twice should be sufficient.
History
Date User Action Args
2011-04-07 01:12:46r.david.murraysetrecipients: + r.david.murray, twouters, georg.brandl, amaury.forgeotdarc, sdaoden
2011-04-07 01:12:46r.david.murraysetmessageid: <1302138766.28.0.0220049130326.issue11700@psf.upfronthosting.co.za>
2011-04-07 01:12:44r.david.murraylinkissue11700 messages
2011-04-07 01:12:44r.david.murraycreate