summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@redhat.com>2019-07-02 12:50:19 (GMT)
committerGitHub <noreply@github.com>2019-07-02 12:50:19 (GMT)
commit7cb9204ee1cf204f6f507d99a60f7c5bb359eebb (patch)
treeae351690ede26e65b690c5802de6aa0a850894ee /Misc
parent039fb49c185570ab7b02f13fbdc51c859cfd831e (diff)
downloadcpython-7cb9204ee1cf204f6f507d99a60f7c5bb359eebb.zip
cpython-7cb9204ee1cf204f6f507d99a60f7c5bb359eebb.tar.gz
cpython-7cb9204ee1cf204f6f507d99a60f7c5bb359eebb.tar.bz2
bpo-37421: urllib.request tests call urlcleanup() (GH-14529)
urllib.request tests now call urlcleanup() to remove temporary files created by urlretrieve() tests and to clear the _opener global variable set by urlopen() and functions calling indirectly urlopen(). regrtest now checks if urllib.request._url_tempfiles and urllib.request._opener are changed by tests.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Tests/2019-07-01-19-56-17.bpo-37421.bOe350.rst4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Tests/2019-07-01-19-56-17.bpo-37421.bOe350.rst b/Misc/NEWS.d/next/Tests/2019-07-01-19-56-17.bpo-37421.bOe350.rst
new file mode 100644
index 0000000..c89134f
--- /dev/null
+++ b/Misc/NEWS.d/next/Tests/2019-07-01-19-56-17.bpo-37421.bOe350.rst
@@ -0,0 +1,4 @@
+urllib.request tests now call :func:`~urllib.request.urlcleanup` to remove
+temporary files created by ``urlretrieve()`` tests and to clear the ``_opener``
+global variable set by ``urlopen()`` and functions calling indirectly
+``urlopen()``.