summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSenthil Kumaran <senthil@uthcode.com>2014-08-16 08:46:14 (GMT)
committerSenthil Kumaran <senthil@uthcode.com>2014-08-16 08:46:14 (GMT)
commit7257b50e185775b6e634a45185fdb3df6588cdf1 (patch)
tree6daaf9bee081a1bb96466fae10d9b1e2eb291b7d /Misc
parentc11633eabacba99e3e9fa76113b932b201af16bc (diff)
downloadcpython-7257b50e185775b6e634a45185fdb3df6588cdf1.zip
cpython-7257b50e185775b6e634a45185fdb3df6588cdf1.tar.gz
cpython-7257b50e185775b6e634a45185fdb3df6588cdf1.tar.bz2
Fix Issue #8797: Raise HTTPError on failed Basic Authentication immediately. Initial patch by Sam Bull.
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 86deb58..dd80f6c 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -19,6 +19,9 @@ Core and Builtins
Library
-------
+- Issue #8797: Raise HTTPError on failed Basic Authentication immediately.
+ Initial patch by Sam Bull.
+
- Issue #21448: Changed FeedParser feed() to avoid O(N**2) behavior when
parsing long line. Original patch by Raymond Hettinger.