summaryrefslogtreecommitdiffstats
path: root/Doc/c-api/init.rst
diff options
context:
space:
mode:
authorEzio Melotti <none@none>2011-04-18 07:14:13 (GMT)
committerEzio Melotti <none@none>2011-04-18 07:14:13 (GMT)
commit74c0031066c365563cd0b4e5ad8da3687ed60656 (patch)
treee3010aed3ab3605a56d87eead255ce15c589a39d /Doc/c-api/init.rst
parentc15d9e759fbbaf54cc97ab41a067ac637c296781 (diff)
parent340bb95ffd9c0947a7f6ac7f4520efada7204bc0 (diff)
downloadcpython-74c0031066c365563cd0b4e5ad8da3687ed60656.zip
cpython-74c0031066c365563cd0b4e5ad8da3687ed60656.tar.gz
cpython-74c0031066c365563cd0b4e5ad8da3687ed60656.tar.bz2
#11865: Merge with 3.1.
Diffstat (limited to 'Doc/c-api/init.rst')
-rw-r--r--Doc/c-api/init.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/c-api/init.rst b/Doc/c-api/init.rst
index 623bd7c..535bf12 100644
--- a/Doc/c-api/init.rst
+++ b/Doc/c-api/init.rst
@@ -908,7 +908,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.
-.. c:function:: void Py_AddPendingCall( int (*func)(void *, void *arg) )
+.. c:function:: void Py_AddPendingCall(int (*func)(void *), void *arg)
.. index:: single: Py_AddPendingCall()