1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
|
.TH IDLE 1 "16 June 1999"
.SH NAME
\fBIDLE\fP \- An Integrated DeveLopment Environment for Python
.SH SYNTAX
.B idle
.RI [ -d ]
.RI [ filename(s) ]
.SH DESCRIPTION
This manual page documents briefly the
.BR idle
command.
This manual page was written for Debian
because the original program does not have a manual page.
For more information, refer to IDLE's help menu.
.PP
.B IDLE
is an Integrated DeveLopment Environment for Python. IDLE is based on
Tkinter, Python's bindings to the Tk widget set. Features are 100% pure
Python, multi-windows with multiple undo und Python colorizing, a Python
shell window subclass, a debugger. IDLE is cross-platform, i.e. it works
on all platforms where Tk is installed.
.LP
.SH OPTIONS
.TP
.B \-d
.PD
Debug mode
.TP
.B filename(s)
.PD
Specifies the file(s) to open when IDLE starts. IDLE will open up each
file in a separate window.
.PP
In any case, Python will open up a Python shell window where one can
interactively evaluate Python code.
.SH AUTHORS
Steffen Kern (sk@pn.org)
|