diff options
author | Guido van Rossum <guido@python.org> | 1998-10-10 18:48:31 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1998-10-10 18:48:31 (GMT) |
commit | 3b4ca0ddad8d1e224f71e89f4c7fbc8de5c6edc4 (patch) | |
tree | 1a66ed7c7eec87f31d61a2a083096e5cad89a39c /Tools/idle/idle.pyw | |
parent | dc1adabcb86ee0813c9bae2d5cc59be5cad1ff31 (diff) | |
download | cpython-3b4ca0ddad8d1e224f71e89f4c7fbc8de5c6edc4.zip cpython-3b4ca0ddad8d1e224f71e89f4c7fbc8de5c6edc4.tar.gz cpython-3b4ca0ddad8d1e224f71e89f4c7fbc8de5c6edc4.tar.bz2 |
Initial checking of Tk-based Python IDE.
Features: text editor with syntax coloring and undo;
subclassed into interactive Python shell which adds history.
Diffstat (limited to 'Tools/idle/idle.pyw')
-rw-r--r-- | Tools/idle/idle.pyw | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Tools/idle/idle.pyw b/Tools/idle/idle.pyw new file mode 100644 index 0000000..3c06e05 --- /dev/null +++ b/Tools/idle/idle.pyw @@ -0,0 +1,3 @@ +#! /usr/bin/env python +import PyShell +PyShell.main() |