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 Domenico Barbieri
Recipients Domenico Barbieri
Date 2019-02-26.08:59:27
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1551171567.53.0.226883358106.issue36118@roundup.psfhosted.org>
In-reply-to
Content
Here is an example of what happens:

>>> x = [["a", "b", ... , "BZ"]]
>>> y = [[], [1,2,3,4,5, ... , 99]]
>>> y[0] = x[0]
>>> print(y[0])
>>> ["a", "b", "c", ... , "BZ", [1,2,3,4,5, ... , 99]]
History
Date User Action Args
2019-02-26 08:59:27Domenico Barbierisetrecipients: + Domenico Barbieri
2019-02-26 08:59:27Domenico Barbierisetmessageid: <1551171567.53.0.226883358106.issue36118@roundup.psfhosted.org>
2019-02-26 08:59:27Domenico Barbierilinkissue36118 messages
2019-02-26 08:59:27Domenico Barbiericreate