]> granicus.if.org Git - python/commitdiff
#11865: fix typo in init.rst.
authorEzio Melotti <ezio.melotti@gmail.com>
Mon, 18 Apr 2011 07:11:21 +0000 (10:11 +0300)
committerEzio Melotti <ezio.melotti@gmail.com>
Mon, 18 Apr 2011 07:11:21 +0000 (10:11 +0300)
Doc/c-api/init.rst

index fd6a9a238d178dde56850b81542ff366dd12cabc..a4e4ad9a3c6060bd1974e79bca42c12d8b7f5949 100644 (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()