advanced-python-homework-2023/time_execution/venv-pypy/bin/f2py

9 lines
272 B
Plaintext
Raw Normal View History

2023-10-12 17:14:36 +03:00
#!/home/zefirka/advanced-python-homework/time_execution/venv-pypy/bin/pypy
# -*- coding: utf-8 -*-
import re
import sys
from numpy.f2py.f2py2e import main
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
sys.exit(main())