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: Fix a small param type in allocation.rst
Type: behavior Stage: resolved
Components: Documentation Versions: Python 3.9, Python 3.8, Python 3.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: SilentGhost, docs@python, methane, miss-islington, shihai1991
Priority: normal Keywords: patch

Created on 2019-06-27 18:01 by shihai1991, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 14430 merged shihai1991, 2019-06-27 18:05
PR 14441 merged miss-islington, 2019-06-28 09:03
PR 14442 merged miss-islington, 2019-06-28 09:03
Messages (5)
msg346764 - (view) Author: SilentGhost (SilentGhost) * (Python triager) Date: 2019-06-27 18:04
Could you please elaborate on what exactly needs fixing?
msg346765 - (view) Author: Hai Shi (shihai1991) * (Python triager) Date: 2019-06-27 18:07
Due to https://github.com/python/cpython/blob/master/Include/objimpl.h#L102,
`void PyObject_Del(PyObject *op)` should be `void PyObject_Del(void *op)`
msg346810 - (view) Author: Inada Naoki (methane) * (Python committer) Date: 2019-06-28 09:03
New changeset b4bee03087a3c70cb040e2ce569c828860ed8e87 by Inada Naoki (Hai Shi) in branch 'master':
bpo-37432: Doc: Fix signature of PyObject_Del() (GH-14430)
https://github.com/python/cpython/commit/b4bee03087a3c70cb040e2ce569c828860ed8e87
msg346811 - (view) Author: miss-islington (miss-islington) Date: 2019-06-28 09:16
New changeset 99f2f851773c6e481e80e8e157d9f5ad4fc5cbb3 by Miss Islington (bot) in branch '3.7':
bpo-37432: Doc: Fix signature of PyObject_Del() (GH-14430)
https://github.com/python/cpython/commit/99f2f851773c6e481e80e8e157d9f5ad4fc5cbb3
msg346812 - (view) Author: miss-islington (miss-islington) Date: 2019-06-28 09:16
New changeset ad00640f936956c3a19834b6cd12b04edf53a776 by Miss Islington (bot) in branch '3.8':
bpo-37432: Doc: Fix signature of PyObject_Del() (GH-14430)
https://github.com/python/cpython/commit/ad00640f936956c3a19834b6cd12b04edf53a776
History
Date User Action Args
2022-04-11 14:59:17adminsetgithub: 81613
2019-06-28 14:28:38SilentGhostsetversions: + Python 3.7, Python 3.8, Python 3.9
2019-06-28 14:28:23SilentGhostsetresolution: fixed
2019-06-28 09:41:52shihai1991setstatus: open -> closed
stage: patch review -> resolved
2019-06-28 09:16:39miss-islingtonsetmessages: + msg346812
2019-06-28 09:16:33miss-islingtonsetnosy: + miss-islington
messages: + msg346811
2019-06-28 09:03:32miss-islingtonsetpull_requests: + pull_request14258
2019-06-28 09:03:23miss-islingtonsetpull_requests: + pull_request14257
2019-06-28 09:03:21methanesetnosy: + methane
messages: + msg346810
2019-06-27 18:07:12shihai1991setmessages: + msg346765
2019-06-27 18:05:06shihai1991setkeywords: + patch
stage: patch review
pull_requests: + pull_request14246
2019-06-27 18:04:17SilentGhostsetnosy: + SilentGhost
messages: + msg346764
2019-06-27 18:03:06shihai1991settitle: Fix a small param type allocation.rst -> Fix a small param type in allocation.rst
2019-06-27 18:01:45shihai1991create