[Python-checkins] cpython (2.7): Issue #11768: signal.set_wakeup_fd() and PySignal_SetWakeupFd() added in 2.6

victor.stinner python-checkins at python.org
Mon Apr 18 16:34:35 CEST 2011


http://hg.python.org/cpython/rev/ebd080593351
changeset:   69427:ebd080593351
branch:      2.7
user:        Victor Stinner <victor.stinner at haypocalc.com>
date:        Mon Apr 18 16:34:31 2011 +0200
summary:
  Issue #11768: signal.set_wakeup_fd() and PySignal_SetWakeupFd() added in 2.6

Fix the documentation.

files:
  Doc/c-api/exceptions.rst |  2 ++
  Doc/library/signal.rst   |  2 ++
  2 files changed, 4 insertions(+), 0 deletions(-)


diff --git a/Doc/c-api/exceptions.rst b/Doc/c-api/exceptions.rst
--- a/Doc/c-api/exceptions.rst
+++ b/Doc/c-api/exceptions.rst
@@ -347,6 +347,8 @@
    error checking.  *fd* should be a valid file descriptor.  The function should
    only be called from the main thread.
 
+   .. versionadded:: 2.6
+
 
 .. cfunction:: PyObject* PyErr_NewException(char *name, PyObject *base, PyObject *dict)
 
diff --git a/Doc/library/signal.rst b/Doc/library/signal.rst
--- a/Doc/library/signal.rst
+++ b/Doc/library/signal.rst
@@ -204,6 +204,8 @@
    attempting to call it from other threads will cause a :exc:`ValueError`
    exception to be raised.
 
+   .. versionadded:: 2.6
+
 
 .. function:: siginterrupt(signalnum, flag)
 

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list