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 Antony.Lee
Recipients Antony.Lee, eric.smith, georg.brandl, ncoghlan, serhiy.storchaka
Date 2014-09-11.15:49:10
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1410450550.72.0.0530206553715.issue22387@psf.upfronthosting.co.za>
In-reply-to
Content
Yes, but this will make the context-manager approach (with NamedTemporaryFile(closed=True): <do stuff>) unusable, because the underlying file object will be closed before calling __enter__.  I think the only reasonable way to implement this would be to have __enter__ return the file name (as for TemporaryDirectory), instead of the file object (which is reasonable because if I pass closed=True, it probably means all I care is that a file exists here for some other process to use!).
But, with the function approach, I cannot override __enter__.
History
Date User Action Args
2014-09-11 15:49:10Antony.Leesetrecipients: + Antony.Lee, georg.brandl, ncoghlan, eric.smith, serhiy.storchaka
2014-09-11 15:49:10Antony.Leesetmessageid: <1410450550.72.0.0530206553715.issue22387@psf.upfronthosting.co.za>
2014-09-11 15:49:10Antony.Leelinkissue22387 messages
2014-09-11 15:49:10Antony.Leecreate