summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2011-05-15 08:21:59 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2011-05-15 08:21:59 (GMT)
commit2ec6b176bd0fc41c6d00f244a4d8d6bdefa2c620 (patch)
treef93a8a228061d12b843d07e0954cd489b2623f5d /Misc
parent0b2489e986dd8fa3c58c242dd30559fce5135aaa (diff)
downloadcpython-2ec6b176bd0fc41c6d00f244a4d8d6bdefa2c620.zip
cpython-2ec6b176bd0fc41c6d00f244a4d8d6bdefa2c620.tar.gz
cpython-2ec6b176bd0fc41c6d00f244a4d8d6bdefa2c620.tar.bz2
Issue #12060: Use sig_atomic_t type and volatile keyword in the signal module.
Patch written by Charles-François Natali.
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 8618363..c41e475 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ What's New in Python 3.1.4?
Core and Builtins
-----------------
+- Issue #12060: Use sig_atomic_t type and volatile keyword in the signal
+ module. Patch written by Charles-François Natali.
+
- Issue #1195: Fix input() if it is interrupted by CTRL+d and then CTRL+c,
clear the end-of-file indicator after CTRL+d.