File: __main__.py

package info (click to toggle)
python3-stdlib-extensions 3.9.2-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 26,768 kB
  • sloc: python: 106,061; ansic: 19,492; sh: 198; makefile: 154
file content (7 lines) | stat: -rw-r--r-- 148 bytes parent folder | download | duplicates (35)
1
2
3
4
5
6
7
"""Main entry point"""

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