[docs] Wrong method signature for Py_AddPendingCall (original) (raw)
Robert Xiao nneonneo at gmail.com
Thu Apr 14 03:42:47 CEST 2011
- Previous message: [docs] [issue9101] reference json format in file formats chapter
- Next message: [docs] Wrong method signature for Py_AddPendingCall
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
On the page http://docs.python.org/py3k/c-api/init.html#asynchronous-notifications, the method signature for Py_AddPendingCall is incorrect.
It reads void Py_AddPendingCall(int (*func)(void *, void *arg)) when it should correctly read int Py_AddPendingCall(int (*func)(void *), void *arg)
(the return type and the arguments are incorrectly listed).
Robert
- Previous message: [docs] [issue9101] reference json format in file formats chapter
- Next message: [docs] Wrong method signature for Py_AddPendingCall
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]