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 r.david.murray
Recipients BreamoreBoy, Fran.Bull, berker.peksag, docs@python, eric.araujo, ezio.melotti, m123orning, mvolz, python-dev, r.david.murray, rhettinger
Date 2014-07-11.19:48:44
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1405108124.75.0.352270967726.issue20135@psf.upfronthosting.co.za>
In-reply-to
Content
I think the example would be clarified by speaking about mutation operations versus non-mutation operations.  After all:

>>> x = [1]
>>> y = x
>>> x = x + [2]
>>> x
[1, 2]
>>> y
[1]

At that point including a list += operation would also be beneficial.
History
Date User Action Args
2014-07-11 19:48:44r.david.murraysetrecipients: + r.david.murray, rhettinger, ezio.melotti, eric.araujo, docs@python, BreamoreBoy, python-dev, berker.peksag, m123orning, Fran.Bull, mvolz
2014-07-11 19:48:44r.david.murraysetmessageid: <1405108124.75.0.352270967726.issue20135@psf.upfronthosting.co.za>
2014-07-11 19:48:44r.david.murraylinkissue20135 messages
2014-07-11 19:48:44r.david.murraycreate