This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: typo in Py_AddPendingCall document
Type: Stage: resolved
Components: Documentation Versions: Python 3.1, Python 3.2, Python 3.3, Python 2.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: ezio.melotti Nosy List: Zhiping.Deng, docs@python, ezio.melotti, python-dev
Priority: normal Keywords:

Created on 2011-04-18 06:51 by Zhiping.Deng, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Messages (3)
msg133953 - (view) Author: Zhiping Deng (Zhiping.Deng) Date: 2011-04-18 06:51
http://docs.python.org/c-api/init.html?highlight=py_addpendingcall#Py_AddPendingCall

void Py_AddPendingCall(int (*func)(void *, void *arg))
which should be 
void Py_AddPendingCall(int (*func)(void *), void *arg)
msg133954 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2011-04-18 07:15
New changeset fc2def15ab11 by Ezio Melotti in branch '2.7':
#11865: fix typo in init.rst.
http://hg.python.org/cpython/rev/fc2def15ab11

New changeset 6e090d78857c by Ezio Melotti in branch '3.1':
#11865: fix typo in init.rst.
http://hg.python.org/cpython/rev/6e090d78857c

New changeset ce804653c752 by Ezio Melotti in branch '3.2':
#11865: Merge with 3.1.
http://hg.python.org/cpython/rev/ce804653c752

New changeset d8dd02f6db1a by Ezio Melotti in branch 'default':
#11865: Merge with 3.2.
http://hg.python.org/cpython/rev/d8dd02f6db1a
msg133955 - (view) Author: Ezio Melotti (ezio.melotti) * (Python committer) Date: 2011-04-18 07:16
Fixed, thanks for the report!
History
Date User Action Args
2022-04-11 14:57:16adminsetgithub: 56074
2011-04-18 07:16:12ezio.melottisetstatus: open -> closed

assignee: docs@python -> ezio.melotti
versions: + Python 3.1, Python 3.2, Python 3.3
nosy: + ezio.melotti

messages: + msg133955
resolution: fixed
stage: resolved
2011-04-18 07:15:11python-devsetnosy: + python-dev
messages: + msg133954
2011-04-18 06:51:14Zhiping.Dengcreate