Home | History | Annotate | Download | only in idlelib

Lines Matching full:idle

23     print>>sys.__stderr__, "** IDLE can't import Tkinter.  " \
49 # Override warnings module to write to warning_stream. Initialize to send IDLE
71 """Format warnings the IDLE way"""
107 "Regular text edit window in IDLE, supports breakpoints"
209 # Tk issues or IDLE issues, or whether they can actually
234 tkMessageBox.showerror(title='IDLE Error',
242 # can happen if IDLE closes due to the .update() call
286 "Extend base class: IDLE supports a shell and breakpoints"
388 # Maybe IDLE is installed and is being accessed via sys.path,
389 # or maybe it's not installed and the idle.py script is being
390 # run from the IDLE source directory.
781 "IDLE internal error in runcode()"
804 "IDLE can't bind to a TCP/IP port, which is necessary to "
807 "Run IDLE with the -n command line switch to start without a "
808 "subprocess and refer to Help/IDLE Help 'Running without a "
815 "IDLE's subprocess didn't make connection. Either IDLE can't "
924 "You can only toggle the debugger when idle",
1379 USAGE: idle [-deins] [-t title] [file]*
1380 idle [-dns] [-t title] (-c cmd | -r file) [arg]*
1381 idle [-dns] [-t title] - [arg]*
1384 -n run IDLE without a subprocess (see Help/IDLE Help for details)
1386 The following options will override the IDLE 'settings' configuration:
1406 idle
1407 Open an edit window or shell depending on IDLE's configuration.
1409 idle foo.py foobar.py
1412 idle -est "Baz" foo.py
1416 idle -c "import sys; print sys.argv" "foo"
1420 idle -d -s -r foo.py "Hello World"
1425 echo "import sys; print sys.argv" | idle - "foobar"
1501 # check the IDLE settings configuration (but command line overrides)
1507 root = Tk(className="Idle")
1529 # IDLE to be launched the shell window will open just in front of
1556 # in the IDLE shell window; this is less intrusive than always opening
1562 while flist.inversedict: # keep IDLE running while files are open.