Files
openide/python/testData/debug/test_subprocess.py
Andrey Lisin ce63f394dd PY-36726 Fix debugging for some old Python versions
GitOrigin-RevId: 61fe96ab129b7eddb8394faa67e8557480bc2982
2019-08-06 18:06:34 +03:00

9 lines
244 B
Python

from __future__ import print_function
import os
import subprocess
import sys
ret = subprocess.call([os.path.abspath(sys.executable), "test_python_subprocess_another_helper.py"])
print("The subprocess finished with the return code %d." % ret)