From 8e4eeef4ee8589ecaf8537b1060920f9c5027de7 Mon Sep 17 00:00:00 2001 From: Ezio Melotti Date: Mon, 18 Apr 2011 10:11:21 +0300 Subject: [PATCH] #11865: fix typo in init.rst. --- Doc/c-api/init.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/c-api/init.rst b/Doc/c-api/init.rst index fd6a9a238d1..a4e4ad9a3c6 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()