Module implementing a function to patch QProcess to support debugging of the process.
| _debugClient | 
| QProcessWrapper | Wrapper class for *.QProcess. | 
| patchQProcess | Function to patch the QtCore module's QProcess. | 
Wrapper class for *.QProcess.
| _origQProcessStartDetached | 
| None | 
| QProcessWrapper | Constructor | 
| __startDetached | Private method to start the detached process. | 
| start | Public method to start the process. | 
| startDetached | Public method to start the detached process. | 
| startDetachedStatic | Static method to start the detached process. | 
Constructor
Private method to start the detached process.
This method patches the arguments such, that a debug client is started for the Python script. A Python script is assumed, if the program to be started contains the string 'python'.
Public method to start the process.
This method patches the arguments such, that a debug client is started for the Python script. A Python script is assumed, if the program to be started contains the string 'python'.
Public method to start the detached process.
This method patches the arguments such, that a debug client is started for the Python script. A Python script is assumed, if the program to be started contains the string 'python'.
Static method to start the detached process.
This method patches the arguments such, that a debug client is started for the Python script. A Python script is assumed, if the program to be started contains the string 'python'.
Function to patch the QtCore module's QProcess.