323 if not childProcess and not isMultiprocessingPopen and isNewPythonProcess: |
323 if not childProcess and not isMultiprocessingPopen and isNewPythonProcess: |
324 ( |
324 ( |
325 wd, |
325 wd, |
326 host, |
326 host, |
327 port, |
327 port, |
328 exceptions, |
328 reportAllExceptions, |
329 tracePython, |
329 tracePython, |
330 redirect, |
330 redirect, |
331 noencoding, |
331 noencoding, |
332 ) = _debugClient.startOptions |
332 ) = _debugClient.startOptions |
333 _debugClient.startDebugger( |
333 _debugClient.startDebugger( |
334 filename=sys.argv[0], |
334 filename=sys.argv[0], |
335 host=host, |
335 host=host, |
336 port=port, |
336 port=port, |
337 enableTrace=multiprocess and not isSubprocessFork, |
337 enableTrace=multiprocess and not isSubprocessFork, |
338 exceptions=exceptions, |
338 reportAllExceptions=reportAllExceptions, |
339 tracePython=tracePython, |
339 tracePython=tracePython, |
340 redirect=redirect, |
340 redirect=redirect, |
341 passive=False, |
341 passive=False, |
342 multiprocessSupport=multiprocess, |
342 multiprocessSupport=multiprocess, |
343 ) |
343 ) |