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 vstinner
Recipients alexis, amaury.forgeotdarc, eric.araujo, nadeem.vawda, pitrou, python-dev, tarek, vstinner
Date 2011-06-15.22:04:04
SpamBayes Score 0.00022087018
Marked as misclassified No
Message-id <1308175445.43.0.149786162894.issue12167@psf.upfronthosting.co.za>
In-reply-to
Content
test_dist and test_bdist_dumb leak because of the _path_created global variable of packaging.util, used indirectly by copy_tree().

# cache for by mkpath() -- in addition to cheapening redundant calls,
# eliminates redundant "creating /foo/bar/baz" messages in dry-run mode
_path_created = set()

I don't how/when this set should be cleared.
History
Date User Action Args
2011-06-15 22:04:05vstinnersetrecipients: + vstinner, amaury.forgeotdarc, pitrou, nadeem.vawda, tarek, eric.araujo, alexis, python-dev
2011-06-15 22:04:05vstinnersetmessageid: <1308175445.43.0.149786162894.issue12167@psf.upfronthosting.co.za>
2011-06-15 22:04:04vstinnerlinkissue12167 messages
2011-06-15 22:04:04vstinnercreate