Staging
v0.8.1
https://github.com/python/cpython
Raw File
Tip revision: 9e31d36d4ae8a5e1923a59635790a4fe1ba16324 authored by Stefan Krah on 08 September 2012, 13:35:01 UTC
Issue #15814: Update whatsnew to the current state of hashing memoryviews.
Tip revision: 9e31d36
__main__.py
"""Main entry point"""

import sys
if sys.argv[0].endswith("__main__.py"):
    sys.argv[0] = "python -m unittest"

__unittest = True

from .main import main, TestProgram, USAGE_AS_MAIN
TestProgram.USAGE = USAGE_AS_MAIN

main(module=None)
back to top