[issue30596] Add close() to multiprocessing.Process

Antoine Pitrou report at bugs.python.org
Thu Jun 8 15:29:10 EDT 2017


Antoine Pitrou added the comment:

close() wouldn't terminate the underlying process, so the process would still exist (and wouldn't easily be stoppable from Python anymore) if you were to call close() before terminate() or join().

Perhaps we should instead mandate people call join() before close()?

----------

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue30596>
_______________________________________


More information about the Python-bugs-list mailing list