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 abacabadabacaba
Recipients abacabadabacaba
Date 2011-07-01.12:30:45
SpamBayes Score 0.004239235
Marked as misclassified No
Message-id <1309523445.96.0.359988980171.issue12464@psf.upfronthosting.co.za>
In-reply-to
Content
TemporaryDirectory.cleanup follows symbolic links to directories and tries to clean them as well. Try this (on Linux):

import os, tempfile
with tempfile.TemporaryDirectory() as d:
	os.symlink("/proc", d + "/test")
History
Date User Action Args
2011-07-01 12:30:46abacabadabacabasetrecipients: + abacabadabacaba
2011-07-01 12:30:45abacabadabacabasetmessageid: <1309523445.96.0.359988980171.issue12464@psf.upfronthosting.co.za>
2011-07-01 12:30:45abacabadabacabalinkissue12464 messages
2011-07-01 12:30:45abacabadabacabacreate