The buildbots show a refleak in test_super. I narrowed it down to this:
"""Unit tests for zero-argument super() & related machinery."""importunittestclassTestSuper(unittest.TestCase):
deftest_attribute_error(self):
classC:
defmethod(self):
returnsuper().msgtry:
C().method()
exceptAttributeError:
passif__name__=="__main__":
unittest.main()
And found a fix. PR incoming.
Linked PRs
The buildbots show a refleak in test_super. I narrowed it down to this:
And found a fix. PR incoming.
Linked PRs