You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
jianglk.darker 7ee447c011
v811_spc009_project
4 months ago
..
Icons v811_spc009_project 4 months ago
AutoComplete.py v811_spc009_project 4 months ago
AutoCompleteWindow.py v811_spc009_project 4 months ago
AutoExpand.py v811_spc009_project 4 months ago
Bindings.py v811_spc009_project 4 months ago
CREDITS.txt v811_spc009_project 4 months ago
CallTipWindow.py v811_spc009_project 4 months ago
CallTips.py v811_spc009_project 4 months ago
ChangeLog v811_spc009_project 4 months ago
ClassBrowser.py v811_spc009_project 4 months ago
CodeContext.py v811_spc009_project 4 months ago
ColorDelegator.py v811_spc009_project 4 months ago
Debugger.py v811_spc009_project 4 months ago
Delegator.py v811_spc009_project 4 months ago
EditorWindow.py v811_spc009_project 4 months ago
FileList.py v811_spc009_project 4 months ago
FormatParagraph.py v811_spc009_project 4 months ago
GrepDialog.py v811_spc009_project 4 months ago
HISTORY.txt v811_spc009_project 4 months ago
HyperParser.py v811_spc009_project 4 months ago
IOBinding.py v811_spc009_project 4 months ago
IdleHistory.py v811_spc009_project 4 months ago
MultiCall.py v811_spc009_project 4 months ago
MultiStatusBar.py v811_spc009_project 4 months ago
NEWS.txt v811_spc009_project 4 months ago
ObjectBrowser.py v811_spc009_project 4 months ago
OutputWindow.py v811_spc009_project 4 months ago
ParenMatch.py v811_spc009_project 4 months ago
PathBrowser.py v811_spc009_project 4 months ago
Percolator.py v811_spc009_project 4 months ago
PyParse.py v811_spc009_project 4 months ago
PyShell.py v811_spc009_project 4 months ago
README.txt v811_spc009_project 4 months ago
RemoteDebugger.py v811_spc009_project 4 months ago
RemoteObjectBrowser.py v811_spc009_project 4 months ago
ReplaceDialog.py v811_spc009_project 4 months ago
RstripExtension.py v811_spc009_project 4 months ago
ScriptBinding.py v811_spc009_project 4 months ago
ScrolledList.py v811_spc009_project 4 months ago
SearchDialog.py v811_spc009_project 4 months ago
SearchDialogBase.py v811_spc009_project 4 months ago
SearchEngine.py v811_spc009_project 4 months ago
StackViewer.py v811_spc009_project 4 months ago
TODO.txt v811_spc009_project 4 months ago
ToolTip.py v811_spc009_project 4 months ago
TreeWidget.py v811_spc009_project 4 months ago
UndoDelegator.py v811_spc009_project 4 months ago
WidgetRedirector.py v811_spc009_project 4 months ago
WindowList.py v811_spc009_project 4 months ago
ZoomHeight.py v811_spc009_project 4 months ago
__init__.py v811_spc009_project 4 months ago
aboutDialog.py v811_spc009_project 4 months ago
config-extensions.def v811_spc009_project 4 months ago
config-highlight.def v811_spc009_project 4 months ago
config-keys.def v811_spc009_project 4 months ago
config-main.def v811_spc009_project 4 months ago
configDialog.py v811_spc009_project 4 months ago
configHandler.py v811_spc009_project 4 months ago
configHelpSourceEdit.py v811_spc009_project 4 months ago
configSectionNameDialog.py v811_spc009_project 4 months ago
dynOptionMenuWidget.py v811_spc009_project 4 months ago
extend.txt v811_spc009_project 4 months ago
help.txt v811_spc009_project 4 months ago
idle.bat v811_spc009_project 4 months ago
idle.py v811_spc009_project 4 months ago
idle.pyw v811_spc009_project 4 months ago
idlever.py v811_spc009_project 4 months ago
keybindingDialog.py v811_spc009_project 4 months ago
macosxSupport.py v811_spc009_project 4 months ago
rpc.py v811_spc009_project 4 months ago
run.py v811_spc009_project 4 months ago
tabbedpages.py v811_spc009_project 4 months ago
testcode.py v811_spc009_project 4 months ago
textView.py v811_spc009_project 4 months ago

README.txt

IDLE is Python's Tkinter-based Integrated DeveLopment Environment.

IDLE emphasizes a lightweight, clean design with a simple user interface.
Although it is suitable for beginners, even advanced users will find that
IDLE has everything they really need to develop pure Python code.

IDLE features a multi-window text editor with multiple undo, Python colorizing,
and many other capabilities, e.g. smart indent, call tips, and autocompletion.

The editor has comprehensive search functions, including searching through
multiple files.  Class browsers and path browsers provide fast access to
code objects from a top level viewpoint without dealing with code folding.

There is a Python Shell window which features colorizing and command recall.

IDLE executes Python code in a separate process, which is restarted for each
Run (F5) initiated from an editor window.  The environment can also be 
restarted from the Shell window without restarting IDLE.

This enhancement has often been requested, and is now finally available.  The
magic "reload/import *" incantations are no longer required when editing and
testing a module two or three steps down the import chain.

(Personal firewall software may warn about the connection IDLE makes to its
subprocess using this computer's internal loopback interface.  This connection
is not visible on any external interface and no data is sent to or received
from the Internet.)

It is possible to interrupt tightly looping user code, even on Windows.

Applications which cannot support subprocesses and/or sockets can still run
IDLE in a single process.

IDLE has an integrated debugger with stepping, persistent breakpoints, and call
stack visibility.

There is a GUI configuration manager which makes it easy to select fonts,
colors, keybindings, and startup options.  This facility includes a feature
which allows the user to specify additional help sources, either locally or on
the web.

IDLE is coded in 100% pure Python, using the Tkinter GUI toolkit (Tk/Tcl)
and is cross-platform, working on Unix, Mac, and Windows.

IDLE accepts command line arguments.  Try idle -h to see the options.


If you find bugs or have suggestions, let us know about them by using the
Python Bug Tracker:

http://sourceforge.net/projects/python

Patches are always appreciated at the Python Patch Tracker, and change
requests should be posted to the RFE Tracker.

For further details and links, read the Help files and check the IDLE home
page at

http://www.python.org/idle/

There is a mail list for IDLE: idle-dev@python.org.  You can join at

http://mail.python.org/mailman/listinfo/idle-dev