IProgressMonitor subMonitor = new SubProgressMonitor(monitor, 5);
subMonitor.beginTask("Launching python", 1);
// Launch & connect to the debugger
RemoteDebugger debugger = new RemoteDebugger();
debugger.startConnect(subMonitor, config);
subMonitor.subTask("Constructing command_line...");
String[] cmdLine = config.getCommandLine(true);
Process p = createProcess(launch, config.envp, cmdLine, config.workingDirectory);
HashMap<Object, Object> processAttributes = new HashMap<Object, Object>();