cpython: fc2def15ab11 (original) (raw)

Mercurial > cpython

changeset 69417:fc2def15ab11 2.7

#11865: fix typo in init.rst. [#11865]

Ezio Melotti ezio.melotti@gmail.com
date Mon, 18 Apr 2011 10:11:21 +0300
parents 0c7ea87f676a
children 7d355c2ff3d4
files Doc/c-api/init.rst
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 @@ -906,7 +906,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. -.. cfunction:: void Py_AddPendingCall( int (*func)(void *, void *arg) ) +.. cfunction:: void Py_AddPendingCall(int (*func)(void *), void *arg) .. index:: single: Py_AddPendingCall()