Skip to content

Commit ab537e9

Browse files
committed
Put the main script for the new IDLE here.
1 parent 99d2c25 commit ab537e9

2 files changed

Lines changed: 5 additions & 0 deletions

File tree

Tools/scripts/README

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ gencodec.py Create Python codecs from Unicode mapping files
3030
google.py Open a webbrowser with Google.
3131
gprof2html.py Transform gprof(1) output into useful HTML.
3232
h2py.py Translate #define's into Python assignments
33+
idle Main program to start IDLE
3334
ifdef.py Remove #if(n)def groups from C sources
3435
lfcr.py Change LF line endings to CRLF (Unix to Windows)
3536
linktree.py Make a copy of a tree with links to original files

Tools/scripts/idle

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#! /usr/bin/env python
2+
3+
from idlelib.PyShell import main
4+
main()

0 commit comments

Comments
 (0)