diff options
| author | Ezio Melotti <ezio.melotti@gmail.com> | 2011-04-18 07:11:21 (GMT) |
|---|---|---|
| committer | Ezio Melotti <ezio.melotti@gmail.com> | 2011-04-18 07:11:21 (GMT) |
| commit | 8e4eeef4ee8589ecaf8537b1060920f9c5027de7 (patch) | |
| tree | 055f043abda78e1223a0e110593bb0d51b16bc09 | |
| parent | efeb8bdaa2102208e765610fc2f84482b321ef5b (diff) | |
| download | cpython-8e4eeef4ee8589ecaf8537b1060920f9c5027de7.zip cpython-8e4eeef4ee8589ecaf8537b1060920f9c5027de7.tar.gz cpython-8e4eeef4ee8589ecaf8537b1060920f9c5027de7.tar.bz2 | |
#11865: fix typo in init.rst.
| -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 fd6a9a2..a4e4ad9 100644 --- a/Doc/c-api/init.rst +++ b/Doc/c-api/init.rst @@ -906,7 +906,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() |
