(self)
| 305 | self.cannot_set_attr(self.fi.a, "__func__", self.F.a, AttributeError) |
| 306 | |
| 307 | def test___self__(self): |
| 308 | self.assertEqual(self.fi.a.__self__, self.fi) |
| 309 | self.cannot_set_attr(self.fi.a, "__self__", self.fi, AttributeError) |
| 310 | |
| 311 | def test___func___non_method(self): |
| 312 | # Behavior should be the same when a method is added via an attr |
nothing calls this directly
no test coverage detected