We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 99d2c25 commit ab537e9Copy full SHA for ab537e9
2 files changed
Tools/scripts/README
@@ -30,6 +30,7 @@ gencodec.py Create Python codecs from Unicode mapping files
30
google.py Open a webbrowser with Google.
31
gprof2html.py Transform gprof(1) output into useful HTML.
32
h2py.py Translate #define's into Python assignments
33
+idle Main program to start IDLE
34
ifdef.py Remove #if(n)def groups from C sources
35
lfcr.py Change LF line endings to CRLF (Unix to Windows)
36
linktree.py Make a copy of a tree with links to original files
Tools/scripts/idle
@@ -0,0 +1,4 @@
1
+#! /usr/bin/env python
2
+
3
+from idlelib.PyShell import main
4
+main()
0 commit comments