Commit f95033ba authored by Ezio Melotti's avatar Ezio Melotti

#11942: Fix return type of Py_AddPendingCall. Patch by Sandro Tosi.

parent 9a427937
......@@ -892,7 +892,7 @@ a worker thread and the actual call than made at the earliest convenience by the
main thread where it has possession of the global interpreter lock and can
perform any Python API calls.
.. cfunction:: void Py_AddPendingCall(int (*func)(void *), void *arg)
.. cfunction:: int Py_AddPendingCall(int (*func)(void *), void *arg)
.. index:: single: Py_AddPendingCall()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment