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 remi.lapeyre
Recipients merli, remi.lapeyre
Date 2020-03-31.10:05:20
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1585649120.43.0.483153136757.issue40123@roundup.psfhosted.org>
In-reply-to
Content
Hi merli, there is no bug here, you always append the same list to Liste so when modifying it you override previous values. You could make a copy of it by using `Liste.append(list(StringL))` instead of `Liste.append(StringL)` and you would get the behaviour you expect.


Please ask questions in python-help or in StackOverflow for questions related to Python usage.
History
Date User Action Args
2020-03-31 10:05:20remi.lapeyresetrecipients: + remi.lapeyre, merli
2020-03-31 10:05:20remi.lapeyresetmessageid: <1585649120.43.0.483153136757.issue40123@roundup.psfhosted.org>
2020-03-31 10:05:20remi.lapeyrelinkissue40123 messages
2020-03-31 10:05:20remi.lapeyrecreate