cpython: 1cdcd1a25025 (original) (raw)
Mercurial > cpython
changeset 69642:1cdcd1a25025
#11942: merge with 3.2. [#11942]
Ezio Melotti ezio.melotti@gmail.com | |
---|---|
date | Thu, 28 Apr 2011 00:53:48 +0300 |
parents | c8f283cd3e6e(current diff)119c7219b1ac(diff) |
children | bdd6d8631994 |
files | |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-)[+] [-] Doc/c-api/init.rst 2 |
line wrap: on
line diff
--- a/Doc/c-api/init.rst +++ b/Doc/c-api/init.rst @@ -908,7 +908,7 @@ a worker thread and the actual call than 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()