summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2011-04-19 18:12:47 (GMT)
committerRaymond Hettinger <python@rcn.com>2011-04-19 18:12:47 (GMT)
commit111474452db9ae6fec3373c646ebab01726e2b50 (patch)
tree3a46a68e0062596d2e220ac0a3b037694485fe0a /Doc
parentab694380466be70294aa8e5b99b10e9f0c48b3bf (diff)
parent58de6ee8711a079da0b555221ae739d6a69df2f7 (diff)
downloadcpython-111474452db9ae6fec3373c646ebab01726e2b50.zip
cpython-111474452db9ae6fec3373c646ebab01726e2b50.tar.gz
cpython-111474452db9ae6fec3373c646ebab01726e2b50.tar.bz2
merge
Diffstat (limited to 'Doc')
-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 6786109..12abf1e 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()