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 meaning of arg in Py_tracefunc doc
Type: Stage: resolved
Components: Documentation Versions: Python 3.7, Python 3.6, Python 2.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: docs@python, xiang.zhang
Priority: normal Keywords: patch

Created on 2018-01-27 15:58 by xiang.zhang, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 5361 merged xiang.zhang, 2018-01-27 16:29
PR 5377 merged miss-islington, 2018-01-28 07:38
PR 5378 merged miss-islington, 2018-01-28 07:39
Messages (4)
msg310865 - (view) Author: Xiang Zhang (xiang.zhang) * (Python committer) Date: 2018-01-27 15:58
The meaning of arg for PyTrace_Line and PyTrace_CALL is wrong, it is not always NULL but always Py_None.
msg310926 - (view) Author: Xiang Zhang (xiang.zhang) * (Python committer) Date: 2018-01-28 07:38
New changeset 9ed0aee27c249dada410a22fff4325a4a61df36d by Xiang Zhang in branch 'master':
bpo-32687: Fix wrong meaning of args for PyTrace_LINE/CALL in documentation (#5361)
https://github.com/python/cpython/commit/9ed0aee27c249dada410a22fff4325a4a61df36d
msg310928 - (view) Author: Xiang Zhang (xiang.zhang) * (Python committer) Date: 2018-01-28 08:41
New changeset 854f0424de389f023b375dfd0b50c34dea29e8f8 by Xiang Zhang (Miss Islington (bot)) in branch '3.6':
bpo-32687: Fix wrong meaning of args for PyTrace_LINE/CALL in documentation (GH-5361) (GH-5377)
https://github.com/python/cpython/commit/854f0424de389f023b375dfd0b50c34dea29e8f8
msg310929 - (view) Author: Xiang Zhang (xiang.zhang) * (Python committer) Date: 2018-01-28 08:41
New changeset 745e9de7dd9d237d54e92d6e4b469e916fb0352b by Xiang Zhang (Miss Islington (bot)) in branch '2.7':
bpo-32687: Fix wrong meaning of args for PyTrace_LINE/CALL in documentation (GH-5361) (GH-5378)
https://github.com/python/cpython/commit/745e9de7dd9d237d54e92d6e4b469e916fb0352b
History
Date User Action Args
2022-04-11 14:58:57adminsetgithub: 76868
2018-01-28 08:43:19xiang.zhangsetstatus: open -> closed
resolution: fixed
stage: patch review -> resolved
2018-01-28 08:41:31xiang.zhangsetmessages: + msg310929
2018-01-28 08:41:10xiang.zhangsetmessages: + msg310928
2018-01-28 07:39:30miss-islingtonsetpull_requests: + pull_request5219
2018-01-28 07:38:29miss-islingtonsetpull_requests: + pull_request5218
2018-01-28 07:38:23xiang.zhangsetmessages: + msg310926
2018-01-27 16:29:45xiang.zhangsetkeywords: + patch
stage: patch review
pull_requests: + pull_request5206
2018-01-27 15:58:19xiang.zhangcreate