From: Ezio Melotti Date: Mon, 18 Apr 2011 07:11:21 +0000 (+0300) Subject: #11865: fix typo in init.rst. X-Git-Tag: v3.2.1b1~108^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=340bb95ffd9c0947a7f6ac7f4520efada7204bc0;p=thirdparty%2FPython%2Fcpython.git #11865: fix typo in init.rst. --- diff --git a/Doc/c-api/init.rst b/Doc/c-api/init.rst index 67861098aa38..12abf1e9e6b8 100644 --- a/Doc/c-api/init.rst +++ b/Doc/c-api/init.rst @@ -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()