Check if a process is a Python process. Args: pid: Process ID to check Returns: bool: True if the process appears to be a Python process, False otherwise
(pid)
| 40 | |
| 41 | |
| 42 | def is_python_process(pid): |
| 43 | """ |
| 44 | Check if a process is a Python process. |
| 45 | |
| 46 | Args: |
| 47 | pid: Process ID to check |
| 48 | |
| 49 | Returns: |
| 50 | bool: True if the process appears to be a Python process, False otherwise |
| 51 | """ |
| 52 | return _remote_debugging.is_python_process(pid) |
| 53 | |
| 54 | |
| 55 | class ChildProcessMonitor: |
no outgoing calls
searching dependent graphs…