Issue 30656: typo in PyModule_New documentation (original) (raw)

This issue has been migrated to GitHub: https://github.com/python/cpython/issues/74841

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:47 admin set github: 74841
2017-06-16 01:50:11 Mariatta set status: open -> closedresolution: fixedstage: backport needed -> resolved
2017-06-16 01:49:56 Mariatta set messages: +
2017-06-16 01:49:45 Mariatta set messages: +
2017-06-16 00:59:55 Mariatta set pull_requests: + <pull%5Frequest2276>
2017-06-16 00:59:49 Mariatta set pull_requests: + <pull%5Frequest2275>
2017-06-13 17:59:32 Mariatta set stage: commit review -> backport needed
2017-06-13 17:58:21 Mariatta set nosy: + Mariattamessages: +
2017-06-13 17:52:55 Mariatta set versions: - Python 3.3, Python 3.4
2017-06-13 17:10:29 willingc set stage: commit review
2017-06-13 17:09:24 enedil set pull_requests: + <pull%5Frequest2222>
2017-06-13 16:55:49 emilyemorehouse set nosy: + emilyemorehousemessages: +
2017-06-13 16:55:09 emilyemorehouse set pull_requests: + <pull%5Frequest2220>
2017-06-13 14:40:09 hnhn create