Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork32.4k
Closed
Description
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.