commit | 8e4eeef4ee8589ecaf8537b1060920f9c5027de7 | [log] [tgz] |
---|---|---|
author | Ezio Melotti <ezio.melotti@gmail.com> | Mon Apr 18 10:11:21 2011 +0300 |
committer | Ezio Melotti <ezio.melotti@gmail.com> | Mon Apr 18 10:11:21 2011 +0300 |
tree | 055f043abda78e1223a0e110593bb0d51b16bc09 | |
parent | efeb8bdaa2102208e765610fc2f84482b321ef5b [diff] [blame] |
#11865: fix typo in init.rst.
diff --git a/Doc/c-api/init.rst b/Doc/c-api/init.rst index fd6a9a2..a4e4ad9 100644 --- a/Doc/c-api/init.rst +++ b/Doc/c-api/init.rst
@@ -906,7 +906,7 @@ 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()