summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2011-05-15 08:27:09 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2011-05-15 08:27:09 (GMT)
commit5ebfe6d9a96beaa190e803259ffd05abe8786e14 (patch)
treedcb51df432e41cef60336c72271412ac16e358ea /Misc
parent318e62153baf1162130fb85e06caf64bbd5a7916 (diff)
parent2ec6b176bd0fc41c6d00f244a4d8d6bdefa2c620 (diff)
downloadcpython-5ebfe6d9a96beaa190e803259ffd05abe8786e14.zip
cpython-5ebfe6d9a96beaa190e803259ffd05abe8786e14.tar.gz
cpython-5ebfe6d9a96beaa190e803259ffd05abe8786e14.tar.bz2
(Merge 3.1) 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 fd7bc4c..a46497d 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ What's New in Python 3.2.1 beta 1?
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 #12044: Fixed subprocess.Popen when used as a context manager to
wait for the process to end when exiting the context to avoid unintentionally
leaving zombie processes around.