summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2008-01-20 12:05:43 (GMT)
committerGeorg Brandl <georg@python.org>2008-01-20 12:05:43 (GMT)
commit2235011d49bc543ced855804ac9b87c0e98a7b19 (patch)
tree0996fd7241340d0b726e9b0f790b4f65b702e394 /Misc
parent9b0d46db115c10767b240a0a64286214b50fe6ad (diff)
downloadcpython-2235011d49bc543ced855804ac9b87c0e98a7b19.zip
cpython-2235011d49bc543ced855804ac9b87c0e98a7b19.tar.gz
cpython-2235011d49bc543ced855804ac9b87c0e98a7b19.tar.bz2
#856047: respect the ``no_proxy`` env var when checking for proxies
in urllib and using the other ``_proxy`` env vars. Original patch by Donovan Baarda.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 3ff4f3e..7e4a12e 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -369,6 +369,9 @@ Core and builtins
Library
-------
+- #856047: respect the ``no_proxy`` environment variable when using the
+ ``http_proxy`` etc. environment variables in urllib.
+
- #1178141: add a getcode() method to the addinfourls that urllib.open()
returns so that you can retrieve the HTTP status code.