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.

Author arbour
Recipients arbour, docs@python
Date 2013-05-28.07:26:21
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1369725982.22.0.36331305671.issue18079@psf.upfronthosting.co.za>
In-reply-to
Content
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'
History
Date User Action Args
2013-05-28 07:26:22arboursetrecipients: + arbour, docs@python
2013-05-28 07:26:22arboursetmessageid: <1369725982.22.0.36331305671.issue18079@psf.upfronthosting.co.za>
2013-05-28 07:26:22arbourlinkissue18079 messages
2013-05-28 07:26:22arbourcreate