[issue45345] Equalized lists depend to each other after equalizing

2021-10-02 Thread Eric V. Smith
Eric V. Smith added the comment: This isn't a bug. In python, the assignment doesn't make a copy, it makes ts and s refer to the same object. So there's really only one list to change, and you can refer to it by either name, ts or s. -- nosy: +eric.smith resolution: -> not a bug sta

[issue45345] Equalized lists depend to each other after equalizing

2021-10-02 Thread Code7737
Change by Code7737 : Added file: https://bugs.python.org/file50323/Test.py ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscr

[issue45345] Equalized lists depend to each other after equalizing

2021-10-02 Thread Code7737
Change by Code7737 : Added file: https://bugs.python.org/file50322/Test.py ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscr

[issue45345] Equalized lists depend to each other after equalizing

2021-10-02 Thread Code7737
New submission from Code7737 : When you make two lists same by using "=" and then change one of them, other changes too -- files: Test.py messages: 403052 nosy: Code7737 priority: normal severity: normal status: open title: Equalized lists depend to each other after equalizing type: be