Staging
v0.8.1
Revision f1ffa3f918983dd7a6178ea25b650cc1f4c05b12 authored by Larry Hastings on 07 September 2013, 11:41:12 UTC, committed by Larry Hastings on 07 September 2013, 11:41:12 UTC
1 parent b034eee
Raw File
__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