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 daniel.urban
Recipients daniel.urban, docs@python
Date 2011-02-07.17:03:02
SpamBayes Score 0.034173686
Marked as misclassified No
Message-id <1297098183.14.0.0535108956136.issue11141@psf.upfronthosting.co.za>
In-reply-to
Content
The example in the shelve documentation (http://docs.python.org/dev/py3k/library/shelve.html#example) uses the old range() (which returned a list):

d['xx'] = range(4)  # this works as expected, but...
d['xx'].append(5)   # *this doesn't!* -- d['xx'] is STILL range(4)!
History
Date User Action Args
2011-02-07 17:03:03daniel.urbansetrecipients: + daniel.urban, docs@python
2011-02-07 17:03:03daniel.urbansetmessageid: <1297098183.14.0.0535108956136.issue11141@psf.upfronthosting.co.za>
2011-02-07 17:03:02daniel.urbanlinkissue11141 messages
2011-02-07 17:03:02daniel.urbancreate