summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2014-09-21 19:08:00 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2014-09-21 19:08:00 (GMT)
commit91943460b54c20fda330d78a6b8d7643ef838b4e (patch)
tree16a463cf38352fca8dd2ae7c9e48ad9a6b85a9a5 /Misc
parent3e46d7cba27f5636ba16c37651ba4ff6371e1a50 (diff)
downloadcpython-91943460b54c20fda330d78a6b8d7643ef838b4e.zip
cpython-91943460b54c20fda330d78a6b8d7643ef838b4e.tar.gz
cpython-91943460b54c20fda330d78a6b8d7643ef838b4e.tar.bz2
Issue #22423: Unhandled exception in thread no longer causes unhandled
AttributeError when sys.stderr is None.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index b545a55..2b35629 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -21,6 +21,10 @@ Core and Builtins
Library
-------
+
+- Issue #22423: Unhandled exception in thread no longer causes unhandled
+ AttributeError when sys.stderr is None.
+
- 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.