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 tutorial code (does not compile)
Type: Stage: resolved
Components: Documentation Versions: Python 3.9, Python 3.8, Python 3.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: Loïc Etienne, docs@python, miss-islington, ned.deily, xiang.zhang
Priority: normal Keywords: patch

Created on 2019-10-07 09:36 by Loïc Etienne, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 16616 merged Krishna Oza, 2019-10-07 11:09
PR 16618 merged miss-islington, 2019-10-07 11:58
PR 16619 merged miss-islington, 2019-10-07 11:58
Messages (5)
msg354069 - (view) Author: Loïc Etienne (Loïc Etienne) Date: 2019-10-07 09:36
https://docs.python.org/3.7/extending/newtypes_tutorial.html

Is: PY_DECREF(m);
Should be: Py_DECREF(m);
msg354084 - (view) Author: Xiang Zhang (xiang.zhang) * (Python committer) Date: 2019-10-07 11:57
New changeset 038503e08ac5b10601b95d5adc2c2cab7be10163 by Xiang Zhang (Krishna Oza) in branch 'master':
bpo-38391: Fixing a typo for Py_DECREF (GH-16616)
https://github.com/python/cpython/commit/038503e08ac5b10601b95d5adc2c2cab7be10163
msg354085 - (view) Author: miss-islington (miss-islington) Date: 2019-10-07 12:04
New changeset 77b4a659b60536caf11c547332d30677f3e8f02e by Miss Islington (bot) in branch '3.7':
bpo-38391: Fixing a typo for Py_DECREF (GH-16616)
https://github.com/python/cpython/commit/77b4a659b60536caf11c547332d30677f3e8f02e
msg354086 - (view) Author: miss-islington (miss-islington) Date: 2019-10-07 12:05
New changeset 985ec986e864b670687b900a4d6ca977b4e9694d by Miss Islington (bot) in branch '3.8':
bpo-38391: Fixing a typo for Py_DECREF (GH-16616)
https://github.com/python/cpython/commit/985ec986e864b670687b900a4d6ca977b4e9694d
msg354694 - (view) Author: Ned Deily (ned.deily) * (Python committer) Date: 2019-10-15 07:30
New changeset e9c65b4ae765ccd381eccdfc4617dc46899406e1 by Ned Deily (Miss Islington (bot)) in branch '3.7':
bpo-38391: Fixing a typo for Py_DECREF (GH-16616)
https://github.com/python/cpython/commit/e9c65b4ae765ccd381eccdfc4617dc46899406e1
History
Date User Action Args
2022-04-11 14:59:21adminsetgithub: 82572
2019-10-15 07:30:25ned.deilysetnosy: + ned.deily
messages: + msg354694
2019-10-07 12:11:05xiang.zhangsetstatus: open -> closed
assignee: docs@python
components: + Documentation, - Demos and Tools
versions: + Python 3.8, Python 3.9
nosy: + docs@python

resolution: fixed
stage: patch review -> resolved
2019-10-07 12:05:12miss-islingtonsetmessages: + msg354086
2019-10-07 12:04:12miss-islingtonsetnosy: + miss-islington
messages: + msg354085
2019-10-07 11:58:15miss-islingtonsetpull_requests: + pull_request16207
2019-10-07 11:58:09miss-islingtonsetpull_requests: + pull_request16206
2019-10-07 11:57:53xiang.zhangsetnosy: + xiang.zhang
messages: + msg354084
2019-10-07 11:09:08Krishna Ozasetkeywords: + patch
stage: patch review
pull_requests: + pull_request16205
2019-10-07 09:36:21Loïc Etiennecreate