summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2010-12-03 18:41:39 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2010-12-03 18:41:39 (GMT)
commitf3b68b3f981b8baa81e3e838ab921d2e4362ae33 (patch)
tree37d2eea64775edd9f74f251e4cc8a780e98cbe2d /Misc/NEWS
parent38e117d20a1914e9506b3f901c7170eadccefe54 (diff)
downloadcpython-f3b68b3f981b8baa81e3e838ab921d2e4362ae33.zip
cpython-f3b68b3f981b8baa81e3e838ab921d2e4362ae33.tar.gz
cpython-f3b68b3f981b8baa81e3e838ab921d2e4362ae33.tar.bz2
Issue #10478: Reentrant calls inside buffered IO objects (for example by
way of a signal handler) now raise a RuntimeError instead of freezing the current process.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 0349ef2..b0221cb 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -35,6 +35,10 @@ Core and Builtins
Library
-------
+- Issue #10478: Reentrant calls inside buffered IO objects (for example by
+ way of a signal handler) now raise a RuntimeError instead of freezing the
+ current process.
+
- logging: Added getLogRecordFactory/setLogRecordFactory with docs and tests.
- Issue #10549: Fix pydoc traceback when text-documenting certain classes.