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 ammar2
Recipients ammar2, iarp
Date 2019-09-27.19:51:07
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1569613867.43.0.319024398715.issue38300@roundup.psfhosted.org>
In-reply-to
Content
Hmm, I can't recreate this locally:

>>> import tempfile
>>> import os
>>> t = tempfile.TemporaryDirectory()
>>> temp_dir = t.name
>>> os.path.exists(temp_dir)
True
>>> del t
>>> os.path.exists(temp_dir)
False

What version of Python are you using?
History
Date User Action Args
2019-09-27 19:51:07ammar2setrecipients: + ammar2, iarp
2019-09-27 19:51:07ammar2setmessageid: <1569613867.43.0.319024398715.issue38300@roundup.psfhosted.org>
2019-09-27 19:51:07ammar2linkissue38300 messages
2019-09-27 19:51:07ammar2create