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 darmentr
Recipients darmentr, paul.moore, steve.dower, tim.golden, zach.ware
Date 2018-11-06.13:56:41
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1541512601.8.0.788709270274.issue35176@psf.upfronthosting.co.za>
In-reply-to
Content
If you run the following code:

x=[3,4,5]
a=x
for i in range(0,len(a)):
    a[i]=0

All x values are changed to equal a.
History
Date User Action Args
2018-11-06 13:56:41darmentrsetrecipients: + darmentr, paul.moore, tim.golden, zach.ware, steve.dower
2018-11-06 13:56:41darmentrsetmessageid: <1541512601.8.0.788709270274.issue35176@psf.upfronthosting.co.za>
2018-11-06 13:56:41darmentrlinkissue35176 messages
2018-11-06 13:56:41darmentrcreate