[issue30656] typo in PyModule_New documentation

2017-06-15 Thread Mariatta Wijaya
Changes by Mariatta Wijaya : -- resolution: -> fixed stage: backport needed -> resolved status: open -> closed ___ Python tracker

[issue30656] typo in PyModule_New documentation

2017-06-15 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: 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 --

[issue30656] typo in PyModule_New documentation

2017-06-15 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: 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 --

[issue30656] typo in PyModule_New documentation

2017-06-15 Thread Mariatta Wijaya
Changes by Mariatta Wijaya : -- pull_requests: +2276 ___ Python tracker ___ ___

[issue30656] typo in PyModule_New documentation

2017-06-15 Thread Mariatta Wijaya
Changes by Mariatta Wijaya : -- pull_requests: +2275 ___ Python tracker ___ ___

[issue30656] typo in PyModule_New documentation

2017-06-13 Thread Mariatta Wijaya
Changes by Mariatta Wijaya : -- stage: commit review -> backport needed ___ Python tracker ___

[issue30656] typo in PyModule_New documentation

2017-06-13 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: 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

[issue30656] typo in PyModule_New documentation

2017-06-13 Thread Mariatta Wijaya
Changes by Mariatta Wijaya : -- versions: -Python 3.3, Python 3.4 ___ Python tracker ___

[issue30656] typo in PyModule_New documentation

2017-06-13 Thread Carol Willing
Changes by Carol Willing : -- stage: -> commit review ___ Python tracker ___ ___

[issue30656] typo in PyModule_New documentation

2017-06-13 Thread Michał Radwański
Changes by Michał Radwański : -- pull_requests: + ___ Python tracker ___ ___

[issue30656] typo in PyModule_New documentation

2017-06-13 Thread Emily Morehouse
Emily Morehouse added the comment: Good catch, fixed in PR. -- nosy: +emilyemorehouse ___ Python tracker ___

[issue30656] typo in PyModule_New documentation

2017-06-13 Thread Emily Morehouse
Changes by Emily Morehouse : -- pull_requests: +2220 ___ Python tracker ___ ___

[issue30656] typo in PyModule_New documentation

2017-06-13 Thread Jan Hnatek
New submission from Jan Hnatek: 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 -- assignee: docs@python components: Documentation messages: 295922 nosy: