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: Wrong link target in PyMethodDef documentation
Type: behavior Stage: resolved
Components: Documentation Versions: Python 3.7, Python 3.6, Python 3.5, Python 2.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: MSeifert, cheryl.sabella, docs@python, orsenthil, serhiy.storchaka
Priority: normal Keywords:

Created on 2017-03-27 10:31 by MSeifert, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 890 merged cheryl.sabella, 2017-03-30 00:14
PR 890 merged cheryl.sabella, 2017-03-30 00:14
PR 894 merged orsenthil, 2017-03-30 05:20
PR 895 merged orsenthil, 2017-03-30 05:20
PR 896 merged orsenthil, 2017-03-30 05:21
Messages (7)
msg290575 - (view) Author: Michael Seifert (MSeifert) * Date: 2017-03-27 10:31
The `link`-target of the "type" struct member is the python built-in "type".  See [1].

I think it should not be a link at all.

[1] https://docs.python.org/3.7/c-api/structures.html#c.PyMemberDef
msg290634 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2017-03-27 18:37
Agree. I noticed this when making a review of PR 831, but forgot to open an issue.
msg290798 - (view) Author: Cheryl Sabella (cheryl.sabella) * (Python committer) Date: 2017-03-29 23:56
I am working on a pull request for this issue.
msg290799 - (view) Author: Senthil Kumaran (orsenthil) * (Python committer) Date: 2017-03-30 00:27
New changeset c3c7ef088583cc12bd218138036d1edb6de9c63f by Senthil Kumaran (csabella) in branch 'master':
bpo-29917: DOC: Remove link from PyMethodDef (#890)
https://github.com/python/cpython/commit/c3c7ef088583cc12bd218138036d1edb6de9c63f
msg290809 - (view) Author: Senthil Kumaran (orsenthil) * (Python committer) Date: 2017-03-30 05:29
New changeset da6ad2f780d187fbfdea330d1037766ae7bdb778 by Senthil Kumaran in branch '3.6':
bpo-29917: DOC: Remove link from PyMethodDef (#890) (#894)
https://github.com/python/cpython/commit/da6ad2f780d187fbfdea330d1037766ae7bdb778
msg290810 - (view) Author: Senthil Kumaran (orsenthil) * (Python committer) Date: 2017-03-30 05:29
New changeset d1dbbaab01354f01faa696aff1280db3b349e354 by Senthil Kumaran in branch '3.5':
bpo-29917: DOC: Remove link from PyMethodDef (#890) (#895)
https://github.com/python/cpython/commit/d1dbbaab01354f01faa696aff1280db3b349e354
msg290811 - (view) Author: Senthil Kumaran (orsenthil) * (Python committer) Date: 2017-03-30 05:29
New changeset 3ceca68741f8a2d3a4436b6d54eae76aa5bcc4c5 by Senthil Kumaran in branch '2.7':
bpo-29917: DOC: Remove link from PyMethodDef (#890) (#896)
https://github.com/python/cpython/commit/3ceca68741f8a2d3a4436b6d54eae76aa5bcc4c5
History
Date User Action Args
2022-04-11 14:58:44adminsetgithub: 74103
2017-03-30 05:30:26orsenthilsetstatus: open -> closed
resolution: fixed
stage: backport needed -> resolved
2017-03-30 05:29:14orsenthilsetmessages: + msg290811
2017-03-30 05:29:08orsenthilsetmessages: + msg290810
2017-03-30 05:29:02orsenthilsetmessages: + msg290809
2017-03-30 05:21:41orsenthilsetpull_requests: + pull_request799
2017-03-30 05:20:40orsenthilsetpull_requests: + pull_request798
2017-03-30 05:20:12orsenthilsetpull_requests: + pull_request797
2017-03-30 00:28:51orsenthilsetstage: needs patch -> backport needed
2017-03-30 00:27:52orsenthilsetnosy: + orsenthil
messages: + msg290799
2017-03-30 00:14:02cheryl.sabellasetpull_requests: + pull_request793
2017-03-30 00:14:01cheryl.sabellasetpull_requests: + pull_request792
2017-03-29 23:56:32cheryl.sabellasetnosy: + cheryl.sabella
messages: + msg290798
2017-03-27 18:37:15serhiy.storchakasetversions: + Python 2.7, Python 3.5, Python 3.6, Python 3.7
nosy: + serhiy.storchaka

messages: + msg290634

type: behavior
stage: needs patch
2017-03-27 10:31:12MSeifertcreate