Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: 5f3933d61dbff6e2ec659930539da3bced008081 authored by Ned Deily on 17 June 2020, 08:48:12 UTC
3.7.8rc1
Tip revision: 5f3933d
__main__.py
"""Main entry point"""

import sys
if sys.argv[0].endswith("__main__.py"):
    sys.argv[0] = "python -m tkinter"
from . import _test as main
main()
back to top