Debugger/DebugClientCapabilities.py

branch
6_1_x
changeset 4557
893c9f26a178
parent 4541
e8ddd9d76414
child 4631
5c1a96925da4
equal deleted inserted replaced
4551:31115c8c20fc 4557:893c9f26a178
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

eric ide

mercurial