#11865: fix typo in init.rst.

This commit is contained in:
Ezio Melotti 2011-04-18 10:11:21 +03:00
parent efeb8bdaa2
commit 8e4eeef4ee
1 changed files with 1 additions and 1 deletions

View File

@ -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
perform any Python API calls.
.. cfunction:: void Py_AddPendingCall( int (*func)(void *, void *arg) )
.. cfunction:: void Py_AddPendingCall(int (*func)(void *), void *arg)
.. index:: single: Py_AddPendingCall()