summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2013-08-17 18:27:56 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2013-08-17 18:27:56 (GMT)
commit6f6ec37838b424c5d5ccef9a640ad02b7d1cb92f (patch)
treeea727add92c9765d5e33d37a563a3d0deba30e4e /Misc
parentf920a1c1f132adb10fe81ea430f08c7b61d5cc9d (diff)
downloadcpython-6f6ec37838b424c5d5ccef9a640ad02b7d1cb92f.zip
cpython-6f6ec37838b424c5d5ccef9a640ad02b7d1cb92f.tar.gz
cpython-6f6ec37838b424c5d5ccef9a640ad02b7d1cb92f.tar.bz2
Issue #16105: When a signal handler fails to write to the file descriptor registered with ``signal.set_wakeup_fd()``, report an exception instead of ignoring the error.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 2b8ff75..f4343e6 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,10 @@ Projected Release date: 2013-09-08
Core and Builtins
-----------------
+- Issue #16105: When a signal handler fails to write to the file descriptor
+ registered with ``signal.set_wakeup_fd()``, report an exception instead
+ of ignoring the error.
+
- Issue #18722: Remove uses of the "register" keyword in C code.
- Issue #18667: Add missing "HAVE_FCHOWNAT" symbol to posix._have_functions.