mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
Issue #24021: docstring for urllib.urlcleanup.
Patch from Daniel Andrade Groppe and Peter Lovett
This commit is contained in:
commit
1f9a29f31b
2 changed files with 3 additions and 0 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue