53 scriptName = sys.argv[0] |
53 scriptName = sys.argv[0] |
54 if not _debugClient.skipMultiProcessDebugging(scriptName): |
54 if not _debugClient.skipMultiProcessDebugging(scriptName): |
55 _debugging = True |
55 _debugging = True |
56 try: |
56 try: |
57 ( |
57 ( |
58 wd, |
58 _wd, |
59 host, |
59 host, |
60 port, |
60 port, |
61 reportAllExceptions, |
61 reportAllExceptions, |
62 tracePython, |
62 tracePython, |
63 redirect, |
63 redirect, |
64 noencoding, |
64 _noencoding, |
65 ) = _debugClient.startOptions[:7] |
65 ) = _debugClient.startOptions[:7] |
66 _debugClient.startDebugger( |
66 _debugClient.startDebugger( |
67 sys.argv[0], |
67 sys.argv[0], |
68 host=host, |
68 host=host, |
69 port=port, |
69 port=port, |