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 ys19991
Recipients asvetlov, ys19991, yselivanov
Date 2020-07-08.16:56:39
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1594227399.77.0.946194436689.issue41244@roundup.psfhosted.org>
In-reply-to
Content
https://bugs.python.org/issue41242

According to BPO-41242, it is better to use join than += when concatenating multiple strings.

https://github.com/python/cpython/blob/b26a0db8ea2de3a8a8e4b40e69fc8642c7d7cb68/Lib/asyncio/queues.py#L82

However, the link above uses += in the same pattern. I think we'd better change this to `str.join()`
History
Date User Action Args
2020-07-08 16:56:39ys19991setrecipients: + ys19991, asvetlov, yselivanov
2020-07-08 16:56:39ys19991setmessageid: <1594227399.77.0.946194436689.issue41244@roundup.psfhosted.org>
2020-07-08 16:56:39ys19991linkissue41244 messages
2020-07-08 16:56:39ys19991create