8 lines
107 B
Python
8 lines
107 B
Python
"""
|
|
IDLE main entry point
|
|
|
|
Run IDLE as python -m idlelib
|
|
"""
|
|
import idlelib.pyshell
|
|
idlelib.pyshell.main()
|