(self, tkconsole)
| 408 | class ModifiedInterpreter(InteractiveInterpreter): |
| 409 | |
| 410 | def __init__(self, tkconsole): |
| 411 | self.tkconsole = tkconsole |
| 412 | locals = sys.modules['__main__'].__dict__ |
| 413 | InteractiveInterpreter.__init__(self, locals=locals) |
| 414 | self.restarting = False |
| 415 | self.subprocess_arglist = None |
| 416 | self.port = PORT |
| 417 | self.original_compiler_flags = self.compile.compiler.flags |
| 418 | |
| 419 | _afterid = None |
| 420 | rpcclt = None |