summaryrefslogtreecommitdiffstats
path: root/Doc/library/signal.rst
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2014-07-24 19:58:53 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2014-07-24 19:58:53 (GMT)
commitd18ccd19f0a197746e48b0a2fa128f8b06f2168d (patch)
treecb9caebf79fd2bd593a4474b13417d8d3ab8b9e8 /Doc/library/signal.rst
parent316b16de13bef1d6e649bc12456bdae34d685d91 (diff)
downloadcpython-d18ccd19f0a197746e48b0a2fa128f8b06f2168d.zip
cpython-d18ccd19f0a197746e48b0a2fa128f8b06f2168d.tar.gz
cpython-d18ccd19f0a197746e48b0a2fa128f8b06f2168d.tar.bz2
tets
Diffstat (limited to 'Doc/library/signal.rst')
-rw-r--r--Doc/library/signal.rst5
1 files changed, 5 insertions, 0 deletions
diff --git a/Doc/library/signal.rst b/Doc/library/signal.rst
index a97ce66..cda228b 100644
--- a/Doc/library/signal.rst
+++ b/Doc/library/signal.rst
@@ -308,6 +308,8 @@ The :mod:`signal` module defines the following functions:
a library to wakeup a poll or select call, allowing the signal to be fully
processed.
+ On Windows, the function only supports socket handles.
+
The old wakeup fd is returned. *fd* must be non-blocking. It is up to the
library to remove any bytes before calling poll or select again.
@@ -318,6 +320,9 @@ The :mod:`signal` module defines the following functions:
attempting to call it from other threads will cause a :exc:`ValueError`
exception to be raised.
+ .. versionchanged:: 3.5
+ On Windows, the function now only supports socket handles.
+
.. function:: siginterrupt(signalnum, flag)