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 ncoghlan
Recipients ncoghlan, yselivanov
Date 2021-06-26.08:30:10
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1624696211.08.0.171107948528.issue44515@roundup.psfhosted.org>
In-reply-to
Content
Backporting the latest contextlib module and test suite to contextlib2, I ran into a couple of CI failures on PyPy3.

Investigation showed that a couple of the new test cases were assuming the use of a refcounted GC. One could be fixed by switching to using a synchronous context manager instead of a ``__del__`` method, but the other needed a few explicit gc.collect() calls.
History
Date User Action Args
2021-06-26 08:30:11ncoghlansetrecipients: + ncoghlan, yselivanov
2021-06-26 08:30:11ncoghlansetmessageid: <1624696211.08.0.171107948528.issue44515@roundup.psfhosted.org>
2021-06-26 08:30:11ncoghlanlinkissue44515 messages
2021-06-26 08:30:10ncoghlancreate