https://github.com/python/cpython
Raw File
Tip revision: f59c0932b4e160f279fb98de4cdad2f58269e0a5 authored by Ned Deily on 28 March 2018, 09:19:31 UTC
3.6.5final
Tip revision: f59c093
__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