logo

oasis-root

Compiled tree of Oasis Linux based on own branch at <https://hacktivis.me/git/oasis/> git clone https://anongit.hacktivis.me/git/oasis-root.git

__main__.py (148B)


  1. """Main entry point"""
  2. import sys
  3. if sys.argv[0].endswith("__main__.py"):
  4. sys.argv[0] = "python -m tkinter"
  5. from . import _test as main
  6. main()