Message 359392 - Python tracker
Message359392
| 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:41 | Michael Graczyk | set | recipients: + Michael Graczyk, Michael Allen, cheryl.sabella, xtreak |
| 2020-01-06 00:50:41 | Michael Graczyk | set | messageid: <1578271841.42.0.403212906262.issue25872@roundup.psfhosted.org> |
| 2020-01-06 00:50:41 | Michael Graczyk | link | issue25872 messages |
| 2020-01-06 00:50:41 | Michael Graczyk | create | |