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