mirror of
https://github.com/python/cpython.git
synced 2025-07-07 19:35:27 +00:00
7 lines
107 B
Python
7 lines
107 B
Python
"""
|
|
IDLE main entry point
|
|
|
|
Run IDLE as python -m idlelib
|
|
"""
|
|
import idlelib.pyshell
|
|
idlelib.pyshell.main()
|