summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorSenthil Kumaran <orsenthil@gmail.com>2010-09-30 06:09:18 (GMT)
committerSenthil Kumaran <orsenthil@gmail.com>2010-09-30 06:09:18 (GMT)
commit0f476d49f8d4aa84210392bf13b59afc67b32b31 (patch)
tree3598ceb150a61373b6e0b6233a9f4f68be1ebbcf /Misc/NEWS
parent748cacee469b3e0204b5f1323c22bae7a0f11e1a (diff)
downloadcpython-0f476d49f8d4aa84210392bf13b59afc67b32b31.zip
cpython-0f476d49f8d4aa84210392bf13b59afc67b32b31.tar.gz
cpython-0f476d49f8d4aa84210392bf13b59afc67b32b31.tar.bz2
Issue1491 - BaseHTTPServer incorrectly implements response code 100
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 79c710c..9144e25 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -76,6 +76,9 @@ Core and Builtins
Library
-------
+- Issue #1491: BaseHTTPServer nows send a 100 Continue response before sending
+ a 200 OK for the Expect: 100-continue request header.
+
- Issue #9360: Cleanup and improvements to the nntplib module. The API
now conforms to the philosophy of bytes and unicode separation in Python 3.
A test suite has also been added.