diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2015-04-01 14:32:32 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2015-04-01 14:32:32 (GMT) |
commit | bbe3803fb5c49a20a0abd9b44feb7553dbe3179b (patch) | |
tree | f7223b30e95fe911997ae9aeacc4f513d14eacdf /Doc | |
parent | c19c3960bb866f665111e5b56cf7d12ae2c90f32 (diff) | |
download | cpython-bbe3803fb5c49a20a0abd9b44feb7553dbe3179b.zip cpython-bbe3803fb5c49a20a0abd9b44feb7553dbe3179b.tar.gz cpython-bbe3803fb5c49a20a0abd9b44feb7553dbe3179b.tar.bz2 |
What's New in Python 3.5: mention signal.set_wakeup_fd() enhancement on Windows
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/whatsnew/3.5.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.5.rst b/Doc/whatsnew/3.5.rst index 61a95a1..4c272e6 100644 --- a/Doc/whatsnew/3.5.rst +++ b/Doc/whatsnew/3.5.rst @@ -410,6 +410,9 @@ shutil signal ------ +* On Windows, :func:`signal.set_wakeup_fd` now also supports socket handles. + (Contributed by Victor Stinner in :issue:`22018`.) + * Different constants of :mod:`signal` module are now enumeration values using the :mod:`enum` module. This allows meaningful names to be printed during debugging, instead of integer “magic numbers”. (Contributed by Giampaolo |