Message359392
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. |
|
| Date |
User |
Action |
Args |
| 2020-01-06 00:50:41 | Michael Graczyk | set | recipients:
+ Michael Graczyk, Michael Allen, cheryl.sabella, xtreak |
| 2020-01-06 00:50:41 | Michael Graczyk | set | messageid: <[email protected]> |
| 2020-01-06 00:50:41 | Michael Graczyk | link | issue25872 messages |
| 2020-01-06 00:50:41 | Michael Graczyk | create | |
|