idle.py [-c command] [-d] [-e] [-s] [-t title] [arg] ... -c command run this command -d enable debugger -e edit mode; arguments are files to be edited -s run $IDLESTARTUP or $PYTHONSTARTUP first -t title set title of shell window
If there are arguments:
sys.argv
reflects the arguments passed to
IDLE itself.
sys.argv[1:...]
, with sys.argv[0]
set
to '-c'
.
sys.argv[1:...]
and
sys.argv[0]
set to the script name. If the script name
is '-', no script is executed but an interactive Python
session is started; the arguments are still available in
sys.argv
.
See About this document... for information on suggesting changes.