Files
RustPython/Lib/venv/__main__.py
Bolun Thompson 9a9a24d5f0 venv module and tests
The venv module was taken from CPython 3.9.0 Beta 5.
2020-07-31 19:30:16 -07:00

11 lines
145 B
Python
Vendored

import sys
from . import main
rc = 1
try:
main()
rc = 0
except Exception as e:
print('Error: %s' % e, file=sys.stderr)
sys.exit(rc)