mirror of
https://github.com/boostorg/python.git
synced 2026-01-21 17:12:22 +00:00
8 lines
135 B
Python
8 lines
135 B
Python
import sys
|
|
|
|
pythonpath = sys.argv[1]
|
|
scriptfile = sys.argv[2]
|
|
sys.argv = sys.argv[2:]
|
|
sys.path.append(pythonpath)
|
|
execfile(scriptfile)
|