(self)
| 94 | return wrapper |
| 95 | |
| 96 | def test_staticmethod(self): |
| 97 | wrapper = self.check_wrapper_attrs(staticmethod, '<staticmethod({!r})>') |
| 98 | |
| 99 | # bpo-43682: Static methods are callable since Python 3.10 |
| 100 | self.assertEqual(wrapper(1), 1) |
| 101 | |
| 102 | def test_classmethod(self): |
| 103 | wrapper = self.check_wrapper_attrs(classmethod, '<classmethod({!r})>') |
nothing calls this directly
no test coverage detected