]> granicus.if.org Git - python/commitdiff
Put the main script for the new IDLE here.
authorGuido van Rossum <guido@python.org>
Fri, 13 Jun 2003 20:34:27 +0000 (20:34 +0000)
committerGuido van Rossum <guido@python.org>
Fri, 13 Jun 2003 20:34:27 +0000 (20:34 +0000)
Tools/scripts/README
Tools/scripts/idle [new file with mode: 0644]

index 528180402b897fca633a31f24b90b7a659299214..0ce797f4bfe06d4c737578389e18171e0e36919c 100644 (file)
@@ -30,6 +30,7 @@ gencodec.py           Create Python codecs from Unicode mapping files
 google.py              Open a webbrowser with Google.
 gprof2html.py          Transform gprof(1) output into useful HTML.
 h2py.py                        Translate #define's into Python assignments
+idle                   Main program to start IDLE
 ifdef.py               Remove #if(n)def groups from C sources
 lfcr.py                        Change LF line endings to CRLF (Unix to Windows)
 linktree.py            Make a copy of a tree with links to original files
diff --git a/Tools/scripts/idle b/Tools/scripts/idle
new file mode 100644 (file)
index 0000000..a209d56
--- /dev/null
@@ -0,0 +1,4 @@
+#! /usr/bin/env python
+
+from idlelib.PyShell import main
+main()