Files
RustPython/Lib/venv/__main__.py
Jeong, YunWon 46c61a65a6 Upgrade venv to v3.13.11 (#6459)
* Upgrade venv

* get_venv_base_executable

* mark failing tests
2025-12-20 12:17:11 +09:00

11 lines
141 B
Python
Vendored

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