diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2011-04-18 14:34:31 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2011-04-18 14:34:31 (GMT) |
commit | 059061a237d6b6358bc22f9257de3cbb0a523483 (patch) | |
tree | 8f05316b9a582b496cee74f6e8de619de4889af4 /Doc/c-api/exceptions.rst | |
parent | 33feeab598f5b0926a2835837c70c257f9be6749 (diff) | |
download | cpython-059061a237d6b6358bc22f9257de3cbb0a523483.zip cpython-059061a237d6b6358bc22f9257de3cbb0a523483.tar.gz cpython-059061a237d6b6358bc22f9257de3cbb0a523483.tar.bz2 |
Issue #11768: signal.set_wakeup_fd() and PySignal_SetWakeupFd() added in 2.6
Fix the documentation.
Diffstat (limited to 'Doc/c-api/exceptions.rst')
-rw-r--r-- | Doc/c-api/exceptions.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Doc/c-api/exceptions.rst b/Doc/c-api/exceptions.rst index e9ced0b..8b1e8fc 100644 --- a/Doc/c-api/exceptions.rst +++ b/Doc/c-api/exceptions.rst @@ -347,6 +347,8 @@ is a separate error indicator for each thread. 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) |