summaryrefslogtreecommitdiffstats
path: root/Doc/c-api
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2011-04-18 07:14:49 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2011-04-18 07:14:49 (GMT)
commitd66f07a6b3b024ff7e748ad377b5125ee5cc880e (patch)
tree356f3801137aa5ebdf97eab9e201480c3b1678fd /Doc/c-api
parenta71c44bd2c44ca6a93aa56867ae00830066ef6b6 (diff)
parent74c0031066c365563cd0b4e5ad8da3687ed60656 (diff)
downloadcpython-d66f07a6b3b024ff7e748ad377b5125ee5cc880e.zip
cpython-d66f07a6b3b024ff7e748ad377b5125ee5cc880e.tar.gz
cpython-d66f07a6b3b024ff7e748ad377b5125ee5cc880e.tar.bz2
#11865: Merge with 3.2.
Diffstat (limited to 'Doc/c-api')
-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()