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 | 340bb95ffd9c0947a7f6ac7f4520efada7204bc0 (patch) | |
tree | cc1d4bbed297cebda70adfe1f3337712e6fdfa1f /Doc/c-api/init.rst | |
parent | 2876a8c272ec9fd7ddd9fec62676bc61ba947747 (diff) | |
download | cpython-340bb95ffd9c0947a7f6ac7f4520efada7204bc0.zip cpython-340bb95ffd9c0947a7f6ac7f4520efada7204bc0.tar.gz cpython-340bb95ffd9c0947a7f6ac7f4520efada7204bc0.tar.bz2 |
#11865: fix typo in init.rst.
Diffstat (limited to 'Doc/c-api/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 6786109..12abf1e 100644 --- a/Doc/c-api/init.rst +++ b/Doc/c-api/init.rst @@ -892,7 +892,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() |