Lines Matching refs:code
26 from code import InteractiveInterpreter
70 # checking user's code.
111 Rather than repeating the linecache code, patch it to save the
675 code = compile(source, filename, "exec")
684 self.runcode(code)
755 def runcommand(self, code):
756 "Run the code without invoking the debugger"
757 # The code better not raise an exception!
762 self.rpcclt.remotequeue("exec", "runcode", (code,), {})
764 exec(code, self.locals)
767 def runcode(self, code):
777 (code,), {})
779 debugger.run(code, self.locals)
781 exec(code, self.locals)
1010 shell code examples.
1162 # User code should use separate default Tk root window
1604 # Setup root. Don't break user code run in IDLE process.