mirror of
https://github.com/python/cpython.git
synced 2025-08-04 17:08:35 +00:00
Issue #24021: docstring for urllib.urlcleanup.
Patch from Daniel Andrade Groppe and Peter Lovett
This commit is contained in:
parent
7e220c082b
commit
2fee5c9367
2 changed files with 3 additions and 0 deletions
|
@ -229,6 +229,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