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 vstinner
Recipients ammar2, serhiy.storchaka, vstinner
Date 2020-09-23.16:57:45
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1600880265.71.0.0261855876452.issue41833@roundup.psfhosted.org>
In-reply-to
Content
> Ideally, I would prefer separate counters for different names

IMO if you want to go at the level of details, I suggest you to generate yourself thread names:

threads = [threading.Thread(name=f"MyThread-{i}") for i in range(1, 6)]

Maintaining a list of thread names sounds overkill to me. It would be quite complicated and would increase the memory footprint, for little benefit.
History
Date User Action Args
2020-09-23 16:57:45vstinnersetrecipients: + vstinner, serhiy.storchaka, ammar2
2020-09-23 16:57:45vstinnersetmessageid: <1600880265.71.0.0261855876452.issue41833@roundup.psfhosted.org>
2020-09-23 16:57:45vstinnerlinkissue41833 messages
2020-09-23 16:57:45vstinnercreate