[issue38391] Typo in tutorial code (does not compile)

2019-10-15 Thread Ned Deily
Ned Deily added the comment: 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 -- nosy: +ned.

[issue38391] Typo in tutorial code (does not compile)

2019-10-07 Thread Xiang Zhang
Change by Xiang Zhang : -- assignee: -> docs@python components: +Documentation -Demos and Tools nosy: +docs@python resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +Python 3.8, Python 3.9 ___ Python tracker

[issue38391] Typo in tutorial code (does not compile)

2019-10-07 Thread miss-islington
miss-islington added the comment: 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 -- nosy: +miss-isling

[issue38391] Typo in tutorial code (does not compile)

2019-10-07 Thread miss-islington
miss-islington added the comment: 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 -- _

[issue38391] Typo in tutorial code (does not compile)

2019-10-07 Thread miss-islington
Change by miss-islington : -- pull_requests: +16207 pull_request: https://github.com/python/cpython/pull/16619 ___ Python tracker ___ __

[issue38391] Typo in tutorial code (does not compile)

2019-10-07 Thread Xiang Zhang
Xiang Zhang added the comment: 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 -- nosy: +xiang.

[issue38391] Typo in tutorial code (does not compile)

2019-10-07 Thread miss-islington
Change by miss-islington : -- pull_requests: +16206 pull_request: https://github.com/python/cpython/pull/16618 ___ Python tracker ___ __

[issue38391] Typo in tutorial code (does not compile)

2019-10-07 Thread Krishna Oza
Change by Krishna Oza : -- keywords: +patch pull_requests: +16205 stage: -> patch review pull_request: https://github.com/python/cpython/pull/16616 ___ Python tracker ___

[issue38391] Typo in tutorial code (does not compile)

2019-10-07 Thread Loïc Etienne
New submission from Loïc Etienne : https://docs.python.org/3.7/extending/newtypes_tutorial.html Is: PY_DECREF(m); Should be: Py_DECREF(m); -- components: Demos and Tools messages: 354069 nosy: Loïc Etienne priority: normal severity: normal status: open title: Typo in tutorial code (does