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 sobolevn
Recipients sobolevn, vstinner, xtreak
Date 2022-02-11.07:43:20
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1644565400.59.0.325972445249.issue46709@roundup.psfhosted.org>
In-reply-to
Content
I am trying to debug this.

Several intersting notes:
1. `time.sleep()` does not help
2. It always fails on `8`th turn
3. Changing `self.assertTrue(result.shouldStop)` to

```
msg = f'{type(result)} {vars(result)}'
self.assertTrue(result.shouldStop, msg)
```

fixes the problem.
History
Date User Action Args
2022-02-11 07:43:20sobolevnsetrecipients: + sobolevn, vstinner, xtreak
2022-02-11 07:43:20sobolevnsetmessageid: <1644565400.59.0.325972445249.issue46709@roundup.psfhosted.org>
2022-02-11 07:43:20sobolevnlinkissue46709 messages
2022-02-11 07:43:20sobolevncreate