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 Michael Graczyk
Recipients Michael Allen, Michael Graczyk, cheryl.sabella, xtreak
Date 2020-01-06.00:50:41
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1578271841.42.0.403212906262.issue25872@roundup.psfhosted.org>
In-reply-to
Content
This issue still exists in Python 3. The repro just needs to be changed so that the threads are actually started.

- map(lambda t: t.start(), threads)
- map(lambda t: t.join(), threads)
+ [t.start() for t in threads]
+ [t.join() for t in threads]

My fix is linked.
History
Date User Action Args
2020-01-06 00:50:41Michael Graczyksetrecipients: + Michael Graczyk, Michael Allen, cheryl.sabella, xtreak
2020-01-06 00:50:41Michael Graczyksetmessageid: <1578271841.42.0.403212906262.issue25872@roundup.psfhosted.org>
2020-01-06 00:50:41Michael Graczyklinkissue25872 messages
2020-01-06 00:50:41Michael Graczykcreate