[issue38055] Starting multiprocessing.Process raises FileNotFoundError unexpectedly

2019-09-10 Thread Donny Brown
Change by Donny Brown : -- title: Starting multiprocessing.Process causes FileNotFoundError -> Starting multiprocessing.Process raises FileNotFoundError unexpectedly type: -> behavior ___ Python tracker <https://bugs.python.org/i

[issue38055] Starting multiprocessing.Process causes FileNotFoundError

2019-09-08 Thread Donny Brown
New submission from Donny Brown : Starting multiprocessing.Process causes FileNotFoundError in certain case: ``` import multiprocessing as mp import time def demo(f): print(f) def main(): cxt=mp.get_context('spawn') f=cxt.Value('i', 0) p=cxt.Process(target=demo, args=[f