(self, i)
| 248 | # Needed for test_closure_injection below |
| 249 | # Defined at global scope to avoid implicitly closing over __class__ |
| 250 | def external_getitem(self, i): |
| 251 | return f"Foreign getitem: {super().__getitem__(i)}" |
| 252 | |
| 253 | |
| 254 | class CodeTest(unittest.TestCase): |
nothing calls this directly
no test coverage detected