summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2010-12-03 19:21:49 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2010-12-03 19:21:49 (GMT)
commit976157f9f3f33923b702cbcd44e4c68be2748496 (patch)
treee22ee93a6cf098ec85e14a8558aaa4287d789653 /Misc/NEWS
parenta818394053c1a6361448fa8f18a182435fbabb53 (diff)
downloadcpython-976157f9f3f33923b702cbcd44e4c68be2748496.zip
cpython-976157f9f3f33923b702cbcd44e4c68be2748496.tar.gz
cpython-976157f9f3f33923b702cbcd44e4c68be2748496.tar.bz2
Merged revisions 86981,86984 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r86981 | antoine.pitrou | 2010-12-03 19:41:39 +0100 (ven., 03 déc. 2010) | 5 lines 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. ........ r86984 | antoine.pitrou | 2010-12-03 20:14:17 +0100 (ven., 03 déc. 2010) | 3 lines Add an "advanced topics" section to the io doc. ........
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 268daa5..94b9c87 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -13,6 +13,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.
+
- Issue #10464: netrc now correctly handles lines with embedded '#' characters.