(self)
| 6482 | self.assertIsNone(inspect.unwrap(C())) |
| 6483 | |
| 6484 | def test_recursion_limit(self): |
| 6485 | obj = NTimesUnwrappable(sys.getrecursionlimit() + 1) |
| 6486 | with self.assertRaisesRegex(ValueError, 'wrapper loop'): |
| 6487 | inspect.unwrap(obj) |
| 6488 | |
| 6489 | def test_wrapped_descriptor(self): |
| 6490 | self.assertIs(inspect.unwrap(NTimesUnwrappable), NTimesUnwrappable) |
nothing calls this directly
no test coverage detected