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 ttcooper
Recipients ezio.melotti, r.david.murray, serhiy.storchaka, ttcooper
Date 2012-11-19.03:04:47
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <2070827.1353294285374.JavaMail.root@mswamui-bichon.atl.sa.earthlink.net>
In-reply-to
Content
Got your message before I got his.  Thanks for the reference to python-list.

-----Original Message-----
>From: "R. David Murray" <report@bugs.python.org>
>Sent: Nov 18, 2012 9:39 PM
>To: ttcooper@indy.net
>Subject: [issue16498] Unwanted link between volatile and shelve storage
>
>
>R. David Murray added the comment:
>
>If it "got it" from dBasis[163] via item assignment (say gList1[i1][1] = dBasis[163]), then yes, Python remembers that.  Names just hold pointers to objects, so after that assignment gList1[i1][1] points to the same object as dBasis[163] does.  If that object is mutable, and you mutate it (as += will do, if the object is mutable), both names will still reference the same object, the one that has been changed.  
>
>As Serhiy suggested, you are more likely to get help with this on python-list.
>
>----------
>
>_______________________________________
>Python tracker <report@bugs.python.org>
><http://bugs.python.org/issue16498>
>_______________________________________
History
Date User Action Args
2012-11-19 03:04:49ttcoopersetrecipients: + ttcooper, ezio.melotti, r.david.murray, serhiy.storchaka
2012-11-19 03:04:48ttcooperlinkissue16498 messages
2012-11-19 03:04:47ttcoopercreate