summaryrefslogtreecommitdiffstats
path: root/Doc/c-api
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2011-04-27 21:53:48 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2011-04-27 21:53:48 (GMT)
commit98be2b72c6dc968b792e5172eaad53e96f7ba859 (patch)
tree4adaa85c6443d5d72dfdcb2c946c3c64658c9f93 /Doc/c-api
parent9ea1c8d7d73aea2990adab20e144827f268eef89 (diff)
parenta782ccaf6c75294a760a52e06ddb8d4ecd893311 (diff)
downloadcpython-98be2b72c6dc968b792e5172eaad53e96f7ba859.zip
cpython-98be2b72c6dc968b792e5172eaad53e96f7ba859.tar.gz
cpython-98be2b72c6dc968b792e5172eaad53e96f7ba859.tar.bz2
#11942: 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 9a78834..e50c417 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:: int Py_AddPendingCall(int (*func)(void *), void *arg)
.. index:: single: Py_AddPendingCall()