Sign in
chromium
/
external
/
github.com
/
python
/
cpython
/
refs/heads/main
/
.
/
Lib
/
tkinter
/
__main__.py
blob: 757880d439c02c359378c42becaf243c60484cb3 [
file
] [
log
] [
blame
] [
edit
]
"""Main entry point"""
import
sys
if
sys
.
argv
[
0
].
endswith
(
"__main__.py"
):
sys
.
argv
[
0
]
=
"python -m tkinter"
from
.
import
_test
as
main
main
()