summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorPhillip J. Eby <pje@telecommunity.com>2010-11-03 00:46:45 (GMT)
committerPhillip J. Eby <pje@telecommunity.com>2010-11-03 00:46:45 (GMT)
commita01799f71a3b5b24a1e2ab183c872d1f311e22ec (patch)
tree1f92420327e2ee41e4b1be077b07fe5f5e9df165 /Misc
parent0d1b38cef942c9e5d1ac9452eef34042ccfa4c28 (diff)
downloadcpython-a01799f71a3b5b24a1e2ab183c872d1f311e22ec.zip
cpython-a01799f71a3b5b24a1e2ab183c872d1f311e22ec.tar.gz
cpython-a01799f71a3b5b24a1e2ab183c872d1f311e22ec.tar.bz2
Update docs (and sample app in wsgiref.simple_server) to reflect PEP 3333.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS6
1 files changed, 6 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index b97a181..adc3157 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -59,6 +59,12 @@ Core and Builtins
Library
-------
+- wsgiref now implements and validates PEP 3333, rather than an experimental
+ extension of PEP 333. (Note: earlier versions of Python 3.x may have
+ incorrectly validated some non-compliant applications as WSGI compliant;
+ if your app validates with Python <3.2b1+, but not on this version, it is
+ likely the case that your app was not compliant.)
+
- Issue #10280: NNTP.nntp_version should reflect the highest version
advertised by the server.