mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 17:20:54 +07:00
First iteration. Minor errors fixed. Merge-request: IJ-MR-154104 Merged-by: Egor Eliseev <Egor.Eliseev@jetbrains.com> GitOrigin-RevId: c4410fdf09edef7c0974ecb6bb15dbd465defbca
8 lines
241 B
Python
8 lines
241 B
Python
from __future__ import print_function
|
|
import os
|
|
import subprocess
|
|
|
|
ret = subprocess.call([os.path.abspath('test_executable_script_debug_helper.py')], shell=True, stderr=subprocess.PIPE)
|
|
|
|
print("Subprocess exited with return code: %d" % ret)
|