Files
openide/python/testData/debug/test_call_spawn_with_bytes_args.py
Anna Kozlova 91f7445298 constructor reference: don't ignore constructor parameters during method reference inference (IDEA-185578)
GitOrigin-RevId: e836468e05db28157713e9edd3c70382f8ecdebc
2019-06-13 03:15:49 +03:00

6 lines
95 B
Python

import os
import sys
args = [sys.executable, b'test4.py']
os.spawnv(os.P_WAIT, args[0], args)