Sign in
chromium
/
external
/
github.com
/
python
/
cpython
/
fcf622e30e780785900f808fce99fd9f9e2491fd
/
.
/
Tools
/
scripts
/
pyvenv
blob: 978d691d1ee692aaa41b9367855c23d7649c230e [
file
]
#!/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
)