New submission from arbour:

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'

----------
assignee: docs@python
components: Documentation
files: tutorial.pdf
messages: 190178
nosy: arbour, docs@python
priority: normal
severity: normal
status: open
title: documentation tutorial 3.1.3 typo
versions: Python 3.3
Added file: http://bugs.python.org/file30394/tutorial.pdf

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue18079>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to