(self)
| 278 | |
| 279 | @unittest.expectedFailure # TODO: RUSTPYTHON |
| 280 | def test_nonlocal(self): |
| 281 | self.assertFalse(self.spam.lookup("some_var").is_nonlocal()) |
| 282 | self.assertTrue(self.other_internal.lookup("some_var").is_nonlocal()) |
| 283 | expected = ("some_var",) |
| 284 | self.assertEqual(self.other_internal.get_nonlocals(), expected) |
| 285 | |
| 286 | @unittest.expectedFailure # TODO: RUSTPYTHON |
| 287 | def test_local(self): |
nothing calls this directly
no test coverage detected