summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-03-07 09:51:37 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-03-07 09:51:37 (GMT)
commitc0a23e63207984304027f298eefc738b6b3c94b1 (patch)
treef950a9b7abfb6e0b0d146e6439204df774a83364 /Misc/NEWS
parent4a7cc8847276df27c8f52987cda619ca279687c2 (diff)
downloadcpython-c0a23e63207984304027f298eefc738b6b3c94b1.zip
cpython-c0a23e63207984304027f298eefc738b6b3c94b1.tar.gz
cpython-c0a23e63207984304027f298eefc738b6b3c94b1.tar.bz2
Issue #21793: BaseHTTPRequestHandler again logs response code as numeric,
not as stringified enum. Patch by Demian Brecht.
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 9acb5d9..c3ef7f2 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -17,6 +17,9 @@ Core and Builtins
Library
-------
+- Issue #21793: BaseHTTPRequestHandler again logs response code as numeric,
+ not as stringified enum. Patch by Demian Brecht.
+
- Issue #23476: In the ssl module, enable OpenSSL's X509_V_FLAG_TRUSTED_FIRST
flag on certificate stores when it is available.