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 serhiy.storchaka
Recipients brandtbucher, pablogsal, serhiy.storchaka
Date 2019-10-11.07:13:31
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1570778011.42.0.0316610896656.issue38436@roundup.psfhosted.org>
In-reply-to
Content
How often do you need to add three or more lists in comparison with other uses of the "+" operator?

How larger is the benefit of this optimization?

How much it slows down other uses of the "+" operator?

Would be nice if you provide some numbers.

More efficient way of concatenating several lists in single expression is:

    [*a, *b, *c, *d, ...]
History
Date User Action Args
2019-10-11 07:13:31serhiy.storchakasetrecipients: + serhiy.storchaka, pablogsal, brandtbucher
2019-10-11 07:13:31serhiy.storchakasetmessageid: <1570778011.42.0.0316610896656.issue38436@roundup.psfhosted.org>
2019-10-11 07:13:31serhiy.storchakalinkissue38436 messages
2019-10-11 07:13:31serhiy.storchakacreate