summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2014-09-17 05:17:58 (GMT)
committerGeorg Brandl <georg@python.org>2014-09-17 05:17:58 (GMT)
commit0840b415829f7fab8db48e1b38bbbfc7da2df8c0 (patch)
treeea5d59d67f9a4800575b981c482de83def2a2400 /Misc
parentdad182c16e6c9d10267a659bd376ba3d10affd4f (diff)
downloadcpython-0840b415829f7fab8db48e1b38bbbfc7da2df8c0.zip
cpython-0840b415829f7fab8db48e1b38bbbfc7da2df8c0.tar.gz
cpython-0840b415829f7fab8db48e1b38bbbfc7da2df8c0.tar.bz2
Issue #22421 - Secure pydoc server run. Bind it to localhost instead of all interfaces.
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 398ed29..60946e8 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ What's New in Python 3.2.6?
Library
-------
+- Issue #22421: Fix a regression that caused the pydoc server to be bound to
+ all interfaces instead of only localhost.
+
- Issue #22419: Limit the length of incoming HTTP request in wsgiref server to
65536 bytes and send a 414 error code for higher lengths. Patch contributed
by Devin Cook.