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 PyModule_New documentation
Type: Stage: resolved
Components: Documentation Versions: Python 3.7, Python 3.6, Python 3.5
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: Mariatta, docs@python, emilyemorehouse, hnhn
Priority: normal Keywords:

Created on 2017-06-13 14:40 by hnhn, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 2170 merged emilyemorehouse, 2017-06-13 16:55
PR 2169 enedil, 2017-06-13 17:09
PR 2230 merged Mariatta, 2017-06-16 00:59
PR 2231 merged Mariatta, 2017-06-16 00:59
Messages (5)
msg295922 - (view) Author: Jan Hnatek (hnhn) * Date: 2017-06-13 14:40
The doc for PyModule_New() refers to "PyImport_NewObject()", while it should refer to "PyModule_NewObject()":

https://docs.python.org/3.6/c-api/module.html#c.PyModule_New
msg295939 - (view) Author: Emily Morehouse (emilyemorehouse) * (Python committer) Date: 2017-06-13 16:55
Good catch, fixed in PR.
msg295945 - (view) Author: Mariatta (Mariatta) * (Python committer) Date: 2017-06-13 17:58
New changeset 2d0afef82a07afdb666f2ca0c533aac5d39155cd by Mariatta (Emily Morehouse) in branch 'master':
bpo-30656: Fix Python C API Module Objects documentation (GH-2170)
https://github.com/python/cpython/commit/2d0afef82a07afdb666f2ca0c533aac5d39155cd
msg296142 - (view) Author: Mariatta (Mariatta) * (Python committer) Date: 2017-06-16 01:49
New changeset 6a90a124706b73824aebf5c2bd7b27daf82b2342 by Mariatta in branch '3.6':
bpo-30656: Fix Python C API Module Objects documentation (GH-2170) (GH-2230)
https://github.com/python/cpython/commit/6a90a124706b73824aebf5c2bd7b27daf82b2342
msg296143 - (view) Author: Mariatta (Mariatta) * (Python committer) Date: 2017-06-16 01:49
New changeset 0b13f58497d3a36d062c3b3b827abb05db5afbc1 by Mariatta in branch '3.5':
bpo-30656: Fix Python C API Module Objects documentation (GH-2170) (GH-2231)
https://github.com/python/cpython/commit/0b13f58497d3a36d062c3b3b827abb05db5afbc1
History
Date User Action Args
2022-04-11 14:58:47adminsetgithub: 74841
2017-06-16 01:50:11Mariattasetstatus: open -> closed
resolution: fixed
stage: backport needed -> resolved
2017-06-16 01:49:56Mariattasetmessages: + msg296143
2017-06-16 01:49:45Mariattasetmessages: + msg296142
2017-06-16 00:59:55Mariattasetpull_requests: + pull_request2276
2017-06-16 00:59:49Mariattasetpull_requests: + pull_request2275
2017-06-13 17:59:32Mariattasetstage: commit review -> backport needed
2017-06-13 17:58:21Mariattasetnosy: + Mariatta
messages: + msg295945
2017-06-13 17:52:55Mariattasetversions: - Python 3.3, Python 3.4
2017-06-13 17:10:29willingcsetstage: commit review
2017-06-13 17:09:24enedilsetpull_requests: + pull_request2222
2017-06-13 16:55:49emilyemorehousesetnosy: + emilyemorehouse
messages: + msg295939
2017-06-13 16:55:09emilyemorehousesetpull_requests: + pull_request2220
2017-06-13 14:40:09hnhncreate