mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-29 18:17:08 +07:00
GitOrigin-RevId: fd52ace3d7a32ecd02c2c5ab90e077967604c15e
6 lines
83 B
Python
6 lines
83 B
Python
import os
|
|
import sys
|
|
|
|
args = [sys.executable, b'test4.py']
|
|
os.execv(args[0], args)
|