Message175943
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. |
|
Date |
User |
Action |
Args |
2012-11-19 02:39:29 | r.david.murray | set | recipients:
+ r.david.murray, ezio.melotti, serhiy.storchaka, ttcooper |
2012-11-19 02:39:29 | r.david.murray | set | messageid: <1353292769.07.0.829814679214.issue16498@psf.upfronthosting.co.za> |
2012-11-19 02:39:29 | r.david.murray | link | issue16498 messages |
2012-11-19 02:39:28 | r.david.murray | create | |
|