opt/alt/python33/bin/pyvenv 0000755 00000000363 15056473602 0011654 0 ustar 00 #!/opt/alt/python33/bin/python3.3
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)
opt/alt/python34/bin/pyvenv 0000755 00000000363 15056602053 0011647 0 ustar 00 #!/opt/alt/python34/bin/python3.4
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)
opt/alt/python35/bin/pyvenv 0000755 00000000363 15056602747 0011662 0 ustar 00 #!/opt/alt/python35/bin/python3.5
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)
opt/alt/python37/bin/pyvenv 0000755 00000000700 15056603032 0011643 0 ustar 00 #!/opt/alt/python37/bin/python3.7
if __name__ == '__main__':
import sys
import pathlib
executable = pathlib.Path(sys.executable or 'python3').name
print('WARNING: the pyenv script is deprecated in favour of '
f'`{executable} -m venv`', file=sys.stderr)
rc = 1
try:
import venv
venv.main()
rc = 0
except Exception as e:
print('Error: %s' % e, file=sys.stderr)
sys.exit(rc)
opt/alt/python36/bin/pyvenv 0000755 00000000700 15056606642 0011654 0 ustar 00 #!/opt/alt/python36/bin/python3.6
if __name__ == '__main__':
import sys
import pathlib
executable = pathlib.Path(sys.executable or 'python3').name
print('WARNING: the pyenv script is deprecated in favour of '
f'`{executable} -m venv`', file=sys.stderr)
rc = 1
try:
import venv
venv.main()
rc = 0
except Exception as e:
print('Error: %s' % e, file=sys.stderr)
sys.exit(rc)