mirror of
https://github.com/python/cpython.git
synced 2025-09-30 20:31:52 +00:00
#11942: Fix return type of Py_AddPendingCall. Patch by Sandro Tosi.
This commit is contained in:
parent
1f9eb155b4
commit
cd12746ce9
1 changed files with 1 additions and 1 deletions
|
@ -906,7 +906,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
|
main thread where it has possession of the global interpreter lock and can
|
||||||
perform any Python API calls.
|
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()
|
.. index:: single: Py_AddPendingCall()
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue