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: Error in Tutorial comment
Type: behavior Stage: resolved
Components: Documentation Versions: Python 3.4, Python 3.5, Python 2.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: berker.peksag, docs@python, python-dev, rossburnett
Priority: normal Keywords:

Created on 2014-12-17 02:51 by rossburnett, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Messages (4)
msg232795 - (view) Author: Ross Burnett (rossburnett) Date: 2014-12-17 02:51
In section "3.1.2. Strings" of the Tutorial (version 3.4 plus others?), a comment on a slicing error has an error:

"word[42]  # the word only has 7 characters"

It should say "word[42]  # the word has 6 characters"
msg232815 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2014-12-17 12:57
New changeset 81c73f964066 by Berker Peksag in branch '3.4':
Issue #23070: Fix a comment in the tutorial.
https://hg.python.org/cpython/rev/81c73f964066

New changeset 81e2f58d9e4b by Berker Peksag in branch 'default':
Issue #23070: Fix a comment in the tutorial.
https://hg.python.org/cpython/rev/81e2f58d9e4b
msg232816 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2014-12-17 12:58
New changeset 8cd84e62c1fd by Berker Peksag in branch '2.7':
Issue #23070: Fix a comment in the tutorial.
https://hg.python.org/cpython/rev/8cd84e62c1fd
msg232817 - (view) Author: Berker Peksag (berker.peksag) * (Python committer) Date: 2014-12-17 13:00
Fixed. Thanks for the report, Ross.
History
Date User Action Args
2022-04-11 14:58:11adminsetgithub: 67259
2014-12-17 13:00:05berker.peksagsetstatus: open -> closed

type: behavior
versions: + Python 2.7, Python 3.5
nosy: + berker.peksag

messages: + msg232817
resolution: fixed
stage: resolved
2014-12-17 12:58:57python-devsetmessages: + msg232816
2014-12-17 12:57:46python-devsetnosy: + python-dev
messages: + msg232815
2014-12-17 02:51:07rossburnettcreate