mirror of
https://github.com/python/cpython.git
synced 2026-07-24 10:52:24 -04:00
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()
|