[issue18079] documentation tutorial 3.1.3 typo

2013-05-28 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Fixed. Thank you for your report. -- resolution: -> fixed stage: -> committed/rejected status: open -> closed ___ Python tracker ___ ___

[issue18079] documentation tutorial 3.1.3 typo

2013-05-28 Thread Roundup Robot
Roundup Robot added the comment: 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. h

[issue18079] documentation tutorial 3.1.3 typo

2013-05-28 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- assignee: docs@python -> serhiy.storchaka nosy: +serhiy.storchaka versions: +Python 3.4 ___ Python tracker ___ __

[issue18079] documentation tutorial 3.1.3 typo

2013-05-28 Thread arbour
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