Home | History | Annotate | Download | only in idlelib

Lines Matching full:interp

144             debug = self.flist.pyshell.interp.debugger
172 debug = self.flist.pyshell.interp.debugger
187 debug = self.flist.pyshell.interp.debugger
442 self.rpcclt.register("interp", self)
751 self.interp.restart_subprocess()
859 self.interp = ModifiedInterpreter(self)
929 db = self.interp.getdebugger()
936 db = self.interp.getdebugger()
943 db = self.interp.getdebugger()
945 self.interp.setdebugger(None)
947 if self.interp.rpcclt:
948 RemoteDebugger.close_remote_debugger(self.interp.rpcclt)
956 if self.interp.rpcclt:
957 dbg_gui = RemoteDebugger.start_remote_debugger(self.interp.rpcclt,
961 self.interp.setdebugger(dbg_gui)
1001 self.interp.kill_subprocess()
1007 self.interp = None
1027 client = self.interp.start_subprocess()
1086 self.interp.write("KeyboardInterrupt\n")
1091 if (self.executing and self.interp.rpcclt):
1092 if self.interp.getdebugger():
1093 self.interp.restart_subprocess()
1095 self.interp.interrupt_subprocess()
1225 more = self.interp.runsource(line)
1228 if self.interp.rpcclt:
1229 return self.interp.remote_stack_viewer()
1247 self.interp.restart_subprocess(with_cwd=True)
1542 shell.interp.execfile(filename)
1544 shell.interp.runcommand("""if 1:
1550 shell.interp.execsource(cmd)
1552 shell.interp.prepend_syspath(script)
1553 shell.interp.execfile(script)
1560 shell.interp.runcommand(''.join(("print('", tkversionwarning, "')")))