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: documentation tutorial 3.1.3 typo
Type: Stage: resolved
Components: Documentation Versions: Python 3.3, Python 3.4
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: serhiy.storchaka Nosy List: arbour, docs@python, python-dev, serhiy.storchaka
Priority: normal Keywords:

Created on 2013-05-28 07:26 by arbour, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
tutorial.pdf arbour, 2013-05-28 07:26 the tutorial doc
Messages (3)
msg190178 - (view) Author: arbour (arbour) Date: 2013-05-28 07:26
documentation tutorial 3.1.3 typo

at page 15 (21/127)

>>> p[0]
['a','b','c']
>>> p[0][1]
'b'

should be:

>>> x[0]
['a','b','c']
>>> x[0][1]
'b'
msg190184 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2013-05-28 09:53
New changeset bde91dddbcbc by Serhiy Storchaka in branch '3.3':
Issue #18079: Fix a typo in the tutorial.
http://hg.python.org/cpython/rev/bde91dddbcbc

New changeset 09b88b5bebd0 by Serhiy Storchaka in branch 'default':
Issue #18079: Fix a typo in the tutorial.
http://hg.python.org/cpython/rev/09b88b5bebd0
msg190187 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2013-05-28 09:57
Fixed. Thank you for your report.
History
Date User Action Args
2022-04-11 14:57:46adminsetgithub: 62279
2013-05-28 09:57:11serhiy.storchakasetstatus: open -> closed
resolution: fixed
messages: + msg190187

stage: resolved
2013-05-28 09:53:27python-devsetnosy: + python-dev
messages: + msg190184
2013-05-28 09:46:09serhiy.storchakasetassignee: docs@python -> serhiy.storchaka

nosy: + serhiy.storchaka
versions: + Python 3.4
2013-05-28 07:26:22arbourcreate