summaryrefslogtreecommitdiffstats
path: root/Doc/c-api/init.rst
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2011-04-18 07:11:21 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2011-04-18 07:11:21 (GMT)
commit340bb95ffd9c0947a7f6ac7f4520efada7204bc0 (patch)
treecc1d4bbed297cebda70adfe1f3337712e6fdfa1f /Doc/c-api/init.rst
parent2876a8c272ec9fd7ddd9fec62676bc61ba947747 (diff)
downloadcpython-340bb95ffd9c0947a7f6ac7f4520efada7204bc0.zip
cpython-340bb95ffd9c0947a7f6ac7f4520efada7204bc0.tar.gz
cpython-340bb95ffd9c0947a7f6ac7f4520efada7204bc0.tar.bz2
#11865: fix typo in init.rst.
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 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()