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