src/eric7/DebugClients/Python/MultiprocessingExtension.py

branch
eric7
changeset 10321
4a017fdf316f
parent 9653
e67609152c5e
child 10439
21c28b0f9e41
equal deleted inserted replaced
10320:ff28050f5dec 10321:4a017fdf316f
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 )

eric ide

mercurial