(self)
| 328 | class TestInteractiveConsoleLocalExit(unittest.TestCase, MockSys): |
| 329 | |
| 330 | def setUp(self): |
| 331 | self.console = code.InteractiveConsole(local_exit=True) |
| 332 | self.mock_sys() |
| 333 | |
| 334 | @unittest.skipIf(sys.flags.no_site, "exit() isn't defined unless there's a site module") |
| 335 | def test_exit(self): |