comparison: Debugger/DebugClientCapabilities.py
Debugger/DebugClientCapabilities.py
- changeset 4555
- 861e1741985c
- parent 4543
- 2e6a880670e9
- child 4631
- 5c1a96925da4
equal
deleted
inserted
replaced
4 # |
4 # |
5 |
5 |
6 """ |
6 """ |
7 Module defining the debug clients capabilities. |
7 Module defining the debug clients capabilities. |
8 """ |
8 """ |
9 |
|
10 from __future__ import unicode_literals |
|
11 |
9 |
12 HasDebugger = 0x0001 |
10 HasDebugger = 0x0001 |
13 HasInterpreter = 0x0002 |
11 HasInterpreter = 0x0002 |
14 HasProfiler = 0x0004 |
12 HasProfiler = 0x0004 |
15 HasCoverage = 0x0008 |
13 HasCoverage = 0x0008 |
17 HasUnittest = 0x0020 |
15 HasUnittest = 0x0020 |
18 HasShell = 0x0040 |
16 HasShell = 0x0040 |
19 |
17 |
20 HasAll = HasDebugger | HasInterpreter | HasProfiler | \ |
18 HasAll = HasDebugger | HasInterpreter | HasProfiler | \ |
21 HasCoverage | HasCompleter | HasUnittest | HasShell |
19 HasCoverage | HasCompleter | HasUnittest | HasShell |
|
20 |
|
21 # |
|
22 # eflag: noqa = M702 |