summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2014-07-21 14:28:54 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2014-07-21 14:28:54 (GMT)
commit0bffc94d571bbd794a36aafc51ec649a26fe436f (patch)
tree023458ed84863d304c544d930ea70ae587a25655 /Misc
parent38d773bd106d644df7509634dea6ce6ff691561b (diff)
downloadcpython-0bffc94d571bbd794a36aafc51ec649a26fe436f.zip
cpython-0bffc94d571bbd794a36aafc51ec649a26fe436f.tar.gz
cpython-0bffc94d571bbd794a36aafc51ec649a26fe436f.tar.bz2
Issue #22018: signal.set_wakeup_fd() now raises an OSError instead of a
ValueError on fstat() failure.
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 5a8d162..cd4ad67 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -108,6 +108,9 @@ Core and Builtins
Library
-------
+- Issue #22018: signal.set_wakeup_fd() now raises an OSError instead of a
+ ValueError on ``fstat()`` failure.
+
- Issue #21044: tarfile.open() now handles fileobj with an integer 'name'
attribute. Based on patch by Martin Panter.