summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorSenthil Kumaran <senthil@uthcode.com>2014-08-16 08:47:38 (GMT)
committerSenthil Kumaran <senthil@uthcode.com>2014-08-16 08:47:38 (GMT)
commitb2e3a939bfd20e8d57881e4ad6e45df61fbfa444 (patch)
tree3570587aa58b6c82b0d5f34cd9a42b12e4307c40 /Misc/NEWS
parentf819ef74da8d5fc915e9fab672ba592efa190f0c (diff)
downloadcpython-b2e3a939bfd20e8d57881e4ad6e45df61fbfa444.zip
cpython-b2e3a939bfd20e8d57881e4ad6e45df61fbfa444.tar.gz
cpython-b2e3a939bfd20e8d57881e4ad6e45df61fbfa444.tar.bz2
Fix Issue #8797: Raise HTTPError on failed Basic Authentication immediately. Initial patch by Sam Bull.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 18e5a6d..32f8cfc 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -27,6 +27,9 @@ Core and Builtins
Library
-------
+- 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.