mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-11 20:07:01 +07:00
First iteration. Minor errors fixed. Merge-request: IJ-MR-154104 Merged-by: Egor Eliseev <Egor.Eliseev@jetbrains.com> GitOrigin-RevId: c4410fdf09edef7c0974ecb6bb15dbd465defbca
11 lines
188 B
Python
11 lines
188 B
Python
import time
|
|
import multiprocessing
|
|
|
|
|
|
def run(name):
|
|
print(name)
|
|
|
|
if __name__ == '__main__':
|
|
p = multiprocessing.Process(target=run, args=("subprocess",))
|
|
p.start()
|
|
p.join() |