diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2011-04-28 00:53:14 +0300 |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2011-04-28 00:53:14 +0300 |
commit | a782ccaf6c75294a760a52e06ddb8d4ecd893311 (patch) | |
tree | 3907154a9e3e36cb0dce91b74b54ffd3fc381876 | |
parent | 0c759febb660ad3dabc976383e24c28658dfda39 (diff) | |
parent | f95033ba445169b5456abb339f084cc5665c35cd (diff) | |
download | cpython-git-a782ccaf6c75294a760a52e06ddb8d4ecd893311.tar.gz |
#11942: merge with 3.1.
-rw-r--r-- | Doc/c-api/init.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/c-api/init.rst b/Doc/c-api/init.rst index 9a78834cdd..e50c417d36 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() |