https://github.com/python/cpython
Raw File
Tip revision: f009305a7d635f86440c804a2916f8fa4d7fc637 authored by Thomas Wouters on 17 January 2024, 12:09:05 UTC
Python 3.13.0a3
Tip revision: f009305
__main__.py
import sys
from . import main

rc = 1
try:
    main()
    rc = 0
except Exception as e:
    print('Error:', e, file=sys.stderr)
sys.exit(rc)
back to top