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: Improve Instance Objects tutorial documentation
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: Mariatta, awecx, docs@python, miss-islington, ned.deily
Priority: normal Keywords: newcomer friendly, patch

Created on 2020-03-05 23:52 by Mariatta, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 18889 merged awecx, 2020-03-09 21:44
PR 18898 merged miss-islington, 2020-03-10 14:18
PR 18899 merged miss-islington, 2020-03-10 14:20
PR 18900 merged miss-islington, 2020-03-10 14:20
Messages (5)
msg363463 - (view) Author: Mariatta (Mariatta) * (Python committer) Date: 2020-03-05 23:52
In https://docs.python.org/3.9/tutorial/classes.html#instance-objects, it says:

> There are two kinds of valid attribute names, data attributes and methods.

Replace the comma with a colon

> There are two kinds of valid attribute names: data attributes and methods.


Reported in docs mailing list: https://mail.python.org/archives/list/docs@python.org/thread/BWXLZM4OLWF5XVBI4S2WK3LFUIEBI6M6/
msg363825 - (view) Author: miss-islington (miss-islington) Date: 2020-03-10 14:17
New changeset e5e56328afac50aad6d8893185d8e7ba8928afe2 by Antoine in branch 'master':
bpo-39869: Fix typo in 'Instance objects' section. (GH-18889)
https://github.com/python/cpython/commit/e5e56328afac50aad6d8893185d8e7ba8928afe2
msg363826 - (view) Author: miss-islington (miss-islington) Date: 2020-03-10 14:25
New changeset 5b29a82b13b65ca785bf296c91f253f3b5d6d694 by Miss Islington (bot) in branch '3.7':
bpo-39869: Fix typo in 'Instance objects' section. (GH-18889)
https://github.com/python/cpython/commit/5b29a82b13b65ca785bf296c91f253f3b5d6d694
msg364202 - (view) Author: miss-islington (miss-islington) Date: 2020-03-14 22:13
New changeset 4abe77c725b1d0a2187b7160924258c9810b824c by Miss Islington (bot) in branch '3.8':
bpo-39869: Fix typo in 'Instance objects' section. (GH-18889)
https://github.com/python/cpython/commit/4abe77c725b1d0a2187b7160924258c9810b824c
msg364203 - (view) Author: Ned Deily (ned.deily) * (Python committer) Date: 2020-03-14 22:17
New changeset 6b6756f1283a87091c6186e70b544d4789e12c51 by Miss Islington (bot) in branch '3.6':
bpo-39869: Fix typo in 'Instance objects' section. (GH-18889) (GH-18898)
https://github.com/python/cpython/commit/6b6756f1283a87091c6186e70b544d4789e12c51
History
Date User Action Args
2022-04-11 14:59:27adminsetgithub: 84050
2020-03-14 22:17:14ned.deilysetnosy: + ned.deily
messages: + msg364203
2020-03-14 22:13:30miss-islingtonsetmessages: + msg364202
2020-03-10 14:25:49miss-islingtonsetmessages: + msg363826
2020-03-10 14:22:43Mariattasetstatus: open -> closed
resolution: fixed
stage: patch review -> resolved
2020-03-10 14:20:55miss-islingtonsetpull_requests: + pull_request18258
2020-03-10 14:20:48miss-islingtonsetpull_requests: + pull_request18257
2020-03-10 14:18:00miss-islingtonsetpull_requests: + pull_request18256
2020-03-10 14:17:44miss-islingtonsetnosy: + miss-islington
messages: + msg363825
2020-03-09 21:44:48awecxsetkeywords: + patch
nosy: + awecx

pull_requests: + pull_request18246
stage: needs patch -> patch review
2020-03-05 23:52:49Mariattacreate