mirror of
https://github.com/izzy2lost/cpython.git
synced 2026-03-10 11:29:24 -07:00
12 lines
232 B
Python
12 lines
232 B
Python
#!/usr/bin/env python3
|
|
if __name__ == '__main__':
|
|
import sys
|
|
rc = 1
|
|
try:
|
|
import venv
|
|
venv.main()
|
|
rc = 0
|
|
except Exception as e:
|
|
print('Error: %s' % e, file=sys.stderr)
|
|
sys.exit(rc)
|