New submission from Peter Van Sickel <p...@us.ibm.com>:

I have been using the multiprocessing Process class a good bit lately. I have a 
class that is managing the a given list of processes from launch to completion. 
Recently I started using Process close().  I found myself wanting to determine 
if a given process instance was closed or not before I did anything like check 
its exitcode or invoke any of the other methods that raise a ValueError if done 
so on a closed process.
As far as I can tell there is no exposed way to check if the process is closed. 
 The Process class has a _closed instance variable and a _check_closed() 
method, but those are not intended for direct use.
I created a simple wrapper class that has its own closed instance variable and 
wraps the close() method of Process so that the closed instance variable can be 
set to True when close() is called and then call super().close() to allow the 
normal close operation to complete.
It would be convenient if the Process class itself supported an is_closed() 
method or exposed a Boolean closed attribute to easily determine if a process 
instance has been closed.

----------
messages: 384860
nosy: petervansickel
priority: normal
severity: normal
status: open
title: Expose a way to determine if a process has been closed or not
type: enhancement
versions: Python 3.10

_______________________________________
Python tracker <rep...@bugs.python.org>
<https://bugs.python.org/issue42897>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to