mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
11 lines
208 B
Python
11 lines
208 B
Python
import subprocess
|
|
import sys
|
|
|
|
|
|
def foo():
|
|
subprocess.call([sys.executable, '-c', "from test_python_subprocess_another_helper import boo"],
|
|
stderr=subprocess.PIPE)
|
|
return 42
|
|
|
|
foo()
|