]> 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 67861098aa38b4084d2791c4a4b18ddfbbfbc810..12abf1e9e6b8bfb6fbbb6d25edabf336dc55cd30 100644 (file)
@@ -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:: void Py_AddPendingCall(int (*func)(void *), void *arg)
 
    .. index:: single: Py_AddPendingCall()