comparison: Debugger/DebugClientCapabilities.py
Debugger/DebugClientCapabilities.py
- changeset 4543
- 2e6a880670e9
- parent 4021
- 195a471c327b
- child 4555
- 861e1741985c
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 |
9 |
11 |
10 HasDebugger = 0x0001 |
12 HasDebugger = 0x0001 |
11 HasInterpreter = 0x0002 |
13 HasInterpreter = 0x0002 |
12 HasProfiler = 0x0004 |
14 HasProfiler = 0x0004 |
13 HasCoverage = 0x0008 |
15 HasCoverage = 0x0008 |