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 Zach kuunka
Recipients Zach kuunka
Date 2019-11-15.07:36:36
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1573803396.44.0.0124945775199.issue38808@roundup.psfhosted.org>
In-reply-to
Content
I found out it just happens when you set an array to an array they behave as the same thing, which if its not a bug it sure is counter-intuitive. 

if you do
x = 1
then 
y = x
then add one to y you have y = 2 and x = 1
if you do it for an array
arr1 = [1]
then set something equal to that
arr2 = arr1
you essentially have 1 var that act on each other which is odd
so arr2.append(2) or arr1.append(2) make both arr1 and arr2 equal to the same thing
History
Date User Action Args
2019-11-15 07:36:36Zach kuunkasetrecipients: + Zach kuunka
2019-11-15 07:36:36Zach kuunkasetmessageid: <1573803396.44.0.0124945775199.issue38808@roundup.psfhosted.org>
2019-11-15 07:36:36Zach kuunkalinkissue38808 messages
2019-11-15 07:36:36Zach kuunkacreate