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 eryksun
Recipients eryksun, paul.moore, steve.dower, tim.golden, zach.ware, zby1234
Date 2021-03-05.17:51:25
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1614966685.5.0.494438524478.issue43409@roundup.psfhosted.org>
In-reply-to
Content
This is a variation on bpo-21822. If join() is called in the main thread, and it gets interrupted immediately after the lock.acquire(block, timeout) call, then subsequent calls will hang. In Windows, the acquire() call is not interruptible with Ctrl+C, so the KeyboardInterrupt gets raised immediately after acquire() returns, so the problem is easy to reproduce in Windows.
History
Date User Action Args
2021-03-05 17:51:25eryksunsetrecipients: + eryksun, paul.moore, tim.golden, zach.ware, steve.dower, zby1234
2021-03-05 17:51:25eryksunsetmessageid: <1614966685.5.0.494438524478.issue43409@roundup.psfhosted.org>
2021-03-05 17:51:25eryksunlinkissue43409 messages
2021-03-05 17:51:25eryksuncreate