https://github.com/python/cpython
Raw File
Tip revision: 7e2815419663a2f82abf6c5e1f848fd1de7c8033 authored by Ɓukasz Langa on 11 October 2022, 14:48:37 UTC
Python 3.9.15
Tip revision: 7e28154
__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