Home | History | Annotate | Download | only in idlelib

Lines Matching full:console

50 # internal warnings to the console.  ScriptBinding.check_syntax() will
324 "console": idleConf.GetHighlight(theme, "console"),
436 self.rpcclt.register("console", self.tkconsole)
462 console = self.tkconsole
463 was_executing = console.executing
464 console.executing = False
472 console.stop_readline()
474 console.text.delete("iomark", "end-1c")
476 console.write('\n')
477 console.showprompt()
478 halfbar = ((int(console.width) - 16) // 2) * '='
479 console.write(halfbar + ' RESTART ' + halfbar)
480 console.text.mark_set("restart", "end-1c")
481 console.text.mark_gravity("restart", "left")
482 console.showprompt()
554 console = self.tkconsole.console
557 print >>console, repr(what)
564 print >>console, errmsg, what
894 self.console = PseudoOutputFile(self, "console", IOBinding.encoding)
950 self.console.write("[DEBUG OFF]\n")
1008 self.console = None
1151 indices = self.text.tag_nextrange("console", "insert linestart")
1255 self.console.write(s)