mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-07 04:03:20 +07:00
GitOrigin-RevId: fd52ace3d7a32ecd02c2c5ab90e077967604c15e
6 lines
95 B
Python
6 lines
95 B
Python
import os
|
|
import sys
|
|
|
|
args = [sys.executable, b'test4.py']
|
|
os.spawnv(os.P_WAIT, args[0], args)
|