https://github.com/python/cpython
Raw File
Tip revision: b6bd7ffcbc1ffaa68e3423e7415ef8ba0f8a188d authored by Thomas Wouters on 06 December 2022, 18:31:10 UTC
Python 3.12.0a3
Tip revision: b6bd7ff
__main__.py
"""
IDLE main entry point

Run IDLE as python -m idlelib
"""
import idlelib.pyshell
idlelib.pyshell.main()
# This file does not work for 2.7; See issue 24212.
back to top