mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-25 21:16:44 +07:00
GitOrigin-RevId: fd52ace3d7a32ecd02c2c5ab90e077967604c15e
12 lines
206 B
Python
12 lines
206 B
Python
import time
|
|
import multiprocessing
|
|
|
|
|
|
def run(name):
|
|
print(name)
|
|
|
|
if __name__ == '__main__':
|
|
multiprocessing.Process(target=run, args=("subprocess",)).start()
|
|
while True:
|
|
time.sleep(0.1)
|