mirror of
https://github.com/python/cpython.git
synced 2025-08-02 16:13:13 +00:00
Put the main script for the new IDLE here.
This commit is contained in:
parent
99d2c251df
commit
ab537e92f3
2 changed files with 5 additions and 0 deletions
|
@ -30,6 +30,7 @@ gencodec.py Create Python codecs from Unicode mapping files
|
||||||
google.py Open a webbrowser with Google.
|
google.py Open a webbrowser with Google.
|
||||||
gprof2html.py Transform gprof(1) output into useful HTML.
|
gprof2html.py Transform gprof(1) output into useful HTML.
|
||||||
h2py.py Translate #define's into Python assignments
|
h2py.py Translate #define's into Python assignments
|
||||||
|
idle Main program to start IDLE
|
||||||
ifdef.py Remove #if(n)def groups from C sources
|
ifdef.py Remove #if(n)def groups from C sources
|
||||||
lfcr.py Change LF line endings to CRLF (Unix to Windows)
|
lfcr.py Change LF line endings to CRLF (Unix to Windows)
|
||||||
linktree.py Make a copy of a tree with links to original files
|
linktree.py Make a copy of a tree with links to original files
|
||||||
|
|
4
Tools/scripts/idle
Normal file
4
Tools/scripts/idle
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
#! /usr/bin/env python
|
||||||
|
|
||||||
|
from idlelib.PyShell import main
|
||||||
|
main()
|
Loading…
Add table
Add a link
Reference in a new issue