Home | History | Annotate | Download | only in idlelib

Lines Matching full:idle

32         """Format warnings the IDLE way"""
79 print>>sys.stderr, "IDLE Subprocess: no IP port passed in sys.argv."
127 print>>sys.__stderr__,"IDLE Subprocess: socket error: "\
130 print>>sys.__stderr__, "IDLE Subprocess: Connection to "\
131 "IDLE GUI failed, exiting."
144 msg = "IDLE's subprocess can't connect to %s:%d. This may be due "\
148 tkMessageBox.showerror("IDLE Subprocess Error", msg, parent=root)
150 tkMessageBox.showerror("IDLE Subprocess Error",
189 # exception was in IDLE internals, don't prune!
191 print>>sys.stderr, "** IDLE Internal Exception: "
227 """Override RPCServer method for IDLE
268 # Keep a reference to stdin so that it won't try to exit IDLE if
269 # sys.stdin gets changed from within IDLE's shell. See issue17838.