5 |
5 |
6 """ |
6 """ |
7 Module defining the debug clients capabilities. |
7 Module defining the debug clients capabilities. |
8 """ |
8 """ |
9 |
9 |
10 # TODO: remove unittest support from Python debugger |
|
11 |
|
12 HasDebugger = 0x0001 |
10 HasDebugger = 0x0001 |
13 HasInterpreter = 0x0002 |
11 HasInterpreter = 0x0002 |
14 HasProfiler = 0x0004 |
12 HasProfiler = 0x0004 |
15 HasCoverage = 0x0008 |
13 HasCoverage = 0x0008 |
16 HasCompleter = 0x0010 |
14 HasCompleter = 0x0010 |
17 HasUnittest = 0x0020 |
15 HasShell = 0x0020 |
18 HasShell = 0x0040 |
|
19 |
16 |
20 HasAll = (HasDebugger | HasInterpreter | HasProfiler | |
17 HasAll = (HasDebugger | HasInterpreter | HasProfiler | HasCoverage | |
21 HasCoverage | HasCompleter | HasUnittest | HasShell) |
18 HasCompleter | HasShell) |