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: PyType_Spec docs list non-existant field "doc"
Type: behavior Stage: resolved
Components: Documentation Versions: Python 3.9, Python 3.8
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: docs@python, scoder, ta1hia
Priority: normal Keywords: easy, newcomer friendly

Created on 2019-09-13 11:06 by scoder, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 16142 merged ta1hia, 2019-09-14 11:56
PR 16153 closed miss-islington, 2019-09-15 06:51
PR 16154 merged miss-islington, 2019-09-15 06:53
Messages (5)
msg352288 - (view) Author: Stefan Behnel (scoder) * (Python committer) Date: 2019-09-13 11:06
The current documentation of the PyType_Spec struct lists a "doc" member which does not exist. It should be removed from the docs.
https://docs.python.org/3.8/c-api/type.html#c.PyType_Spec
msg352291 - (view) Author: Tahia K (ta1hia) * Date: 2019-09-13 11:33
Is it okay for me to grab this one?
msg352296 - (view) Author: Stefan Behnel (scoder) * (Python committer) Date: 2019-09-13 11:43
Absolutely, Tahia. It just needs a PR with a doc update.
msg352426 - (view) Author: Tahia K (ta1hia) * Date: 2019-09-14 11:59
Awesome - just posted the PR.
msg352462 - (view) Author: Stefan Behnel (scoder) * (Python committer) Date: 2019-09-15 07:00
New changeset b65be6cd3d9b6102227d27f4f35385f999a7dd7d by Stefan Behnel (Miss Islington (bot)) in branch '3.8':
bpo-38158: Removing nonexistant member "doc" from PyType_Spec documentation (GH-16142) (GH-16154)
https://github.com/python/cpython/commit/b65be6cd3d9b6102227d27f4f35385f999a7dd7d
History
Date User Action Args
2022-04-11 14:59:20adminsetgithub: 82339
2019-09-15 07:01:35scodersetkeywords: - patch
status: open -> closed
resolution: fixed
stage: patch review -> resolved
2019-09-15 07:00:47scodersetmessages: + msg352462
2019-09-15 06:53:59miss-islingtonsetpull_requests: + pull_request15764
2019-09-15 06:51:47miss-islingtonsetpull_requests: + pull_request15763
2019-09-14 11:59:17ta1hiasetmessages: + msg352426
2019-09-14 11:56:51ta1hiasetkeywords: + patch
stage: needs patch -> patch review
pull_requests: + pull_request15752
2019-09-13 11:43:02scodersetmessages: + msg352296
2019-09-13 11:33:11ta1hiasetnosy: + ta1hia
messages: + msg352291
2019-09-13 11:07:01scodersetstage: needs patch
2019-09-13 11:06:37scodercreate