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 Ben Schreib
Recipients Ben Schreib, docs@python
Date 2015-12-05.17:25:57
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1449336357.7.0.799444279603.issue25808@psf.upfronthosting.co.za>
In-reply-to
Content
The example given in section 5.3 shows an output of "t[0] = 88888" but I believe it should be "t[0] = 12345"

>>> t
(12345, 54321, 'hello!')
>>> # Tuples may be nested:
... u = t, (1, 2, 3, 4, 5)
>>> u
((12345, 54321, 'hello!'), (1, 2, 3, 4, 5))
>>> # Tuples are immutable:
... t[0] = 88888
History
Date User Action Args
2015-12-05 17:25:57Ben Schreibsetrecipients: + Ben Schreib, docs@python
2015-12-05 17:25:57Ben Schreibsetmessageid: <1449336357.7.0.799444279603.issue25808@psf.upfronthosting.co.za>
2015-12-05 17:25:57Ben Schreiblinkissue25808 messages
2015-12-05 17:25:57Ben Schreibcreate