in multiprocessing/forking.py#129, `os._exit` cause child process don't close open file. For example: ``` from multiprocessing import Process def f(): global log # prevent gc close the file log = open("info.log", "w") log.write("***hello world***\n") p = Process(target=f) p.start() p.join() ``` and the `info.log` will be empty. why not use sys.exit ? Thanks
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4