IDLE can be launched as python -m ildelib

This commit is contained in:
Andrew Svetlov 2012-03-26 22:11:46 +03:00
parent 753445a425
commit d543f2b8b0
2 changed files with 11 additions and 0 deletions

9
Lib/idlelib/__main__.py Normal file
View file

@ -0,0 +1,9 @@
"""
IDLE main entry point
Run IDLE as python -m idlelib
"""
import idlelib.PyShell
idlelib.PyShell.main()