(original) (raw)

changeset: 69418:6e090d78857c branch: 3.1 parent: 69412:49e756c8c08b user: Ezio Melotti ezio.melotti@gmail.com date: Mon Apr 18 10:11:21 2011 +0300 files: Doc/c-api/init.rst description: #11865: fix typo in init.rst. diff -r 49e756c8c08b -r 6e090d78857c Doc/c-api/init.rst --- a/Doc/c-api/init.rst Sun Apr 17 19:46:46 2011 -0700 +++ b/Doc/c-api/init.rst Mon Apr 18 10:11:21 2011 +0300 @@ -892,7 +892,7 @@ 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() /ezio.melotti@gmail.com