mirror of
https://github.com/python/cpython.git
synced 2025-10-29 04:35:05 +00:00
(cherry picked from commit d9bf3c16e5)
Co-authored-by: Stan Ulbrych <89152624+StanFromIreland@users.noreply.github.com>
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()
|