56 try: |
56 try: |
57 ( |
57 ( |
58 wd, |
58 wd, |
59 host, |
59 host, |
60 port, |
60 port, |
61 exceptions, |
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, |
70 exceptions=exceptions, |
70 reportAllExceptions=reportAllExceptions, |
71 tracePython=tracePython, |
71 tracePython=tracePython, |
72 redirect=redirect, |
72 redirect=redirect, |
73 passive=False, |
73 passive=False, |
74 multiprocessSupport=True, |
74 multiprocessSupport=True, |
75 ) |
75 ) |