mirror of https://github.com/python/cpython
gh-89364: Export PySignal_SetWakeupFd() function (#121537)
Export the PySignal_SetWakeupFd() function. Previously, the function was documented but it couldn't be used in 3rd party code.
This commit is contained in:
parent
84a5597b08
commit
ca0fb3423c
|
@ -100,7 +100,7 @@ PyAPI_FUNC(PyObject*) PyUnstable_Exc_PrepReraiseStar(
|
|||
|
||||
/* In signalmodule.c */
|
||||
|
||||
int PySignal_SetWakeupFd(int fd);
|
||||
PyAPI_FUNC(int) PySignal_SetWakeupFd(int fd);
|
||||
|
||||
/* Support for adding program text to SyntaxErrors */
|
||||
|
||||
|
|
|
@ -0,0 +1,3 @@
|
|||
Export the :c:func:`PySignal_SetWakeupFd` function. Previously, the function
|
||||
was documented but it couldn't be used in 3rd party code. Patch by Victor
|
||||
Stinner.
|
Loading…
Reference in New Issue