Issue #24021: docstring for urllib.urlcleanup.

Patch from Daniel Andrade Groppe and Peter Lovett
This commit is contained in:
Robert Collins 2015-08-04 12:52:43 +12:00
commit 1f9a29f31b
2 changed files with 3 additions and 0 deletions

View file

@ -230,6 +230,7 @@ def urlretrieve(url, filename=None, reporthook=None, data=None):
return result
def urlcleanup():
"""Clean up temporary files from urlretrieve calls."""
for temp_file in _url_tempfiles:
try:
os.unlink(temp_file)