diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2010-12-03 18:41:39 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2010-12-03 18:41:39 (GMT) |
commit | f3b68b3f981b8baa81e3e838ab921d2e4362ae33 (patch) | |
tree | 37d2eea64775edd9f74f251e4cc8a780e98cbe2d /Misc/NEWS | |
parent | 38e117d20a1914e9506b3f901c7170eadccefe54 (diff) | |
download | cpython-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/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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. |