summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2020-01-05 12:14:31 (GMT)
committerGitHub <noreply@github.com>2020-01-05 12:14:31 (GMT)
commit6a265f0d0c0a4b3b8fecf4275d49187a384167f4 (patch)
tree238eefb63cc4523147fcd84151954f37ffbfd15a /Misc
parentec007cb43faf5f33d06efbc28152c7fdcb2edb9c (diff)
downloadcpython-6a265f0d0c0a4b3b8fecf4275d49187a384167f4.zip
cpython-6a265f0d0c0a4b3b8fecf4275d49187a384167f4.tar.gz
cpython-6a265f0d0c0a4b3b8fecf4275d49187a384167f4.tar.bz2
bpo-39057: Fix urllib.request.proxy_bypass_environment(). (GH-17619)
Ignore leading dots and no longer ignore a trailing newline.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2019-12-15-21-47-54.bpo-39057.FOxn-w.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2019-12-15-21-47-54.bpo-39057.FOxn-w.rst b/Misc/NEWS.d/next/Library/2019-12-15-21-47-54.bpo-39057.FOxn-w.rst
new file mode 100644
index 0000000..24a1744
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2019-12-15-21-47-54.bpo-39057.FOxn-w.rst
@@ -0,0 +1,2 @@
+:func:`urllib.request.proxy_bypass_environment` now ignores leading dots and
+no longer ignores a trailing newline.