summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSenthil Kumaran <senthil@uthcode.com>2014-08-20 02:23:58 (GMT)
committerSenthil Kumaran <senthil@uthcode.com>2014-08-20 02:23:58 (GMT)
commit783737625d1f06f78b53eee6331d2f428ffe4d27 (patch)
treed2218b4b459b7cf4b7e8a5786cf128cc07a1a2da /Misc
parentc1a723a0b300f036ba76c0370374ee2e455c2c52 (diff)
downloadcpython-783737625d1f06f78b53eee6331d2f428ffe4d27.zip
cpython-783737625d1f06f78b53eee6331d2f428ffe4d27.tar.gz
cpython-783737625d1f06f78b53eee6331d2f428ffe4d27.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 397ca5d..9c4f560 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -33,6 +33,9 @@ Library
- Issue #22165: SimpleHTTPRequestHandler now supports undecodable file names.
+- Issue #8797: Raise HTTPError on failed Basic Authentication immediately.
+ Initial patch by Sam Bull.
+
- Issue #20729: Restored the use of lazy iterkeys()/itervalues()/iteritems()
in the mailbox module.