DebugClients/Python/DebugClientCapabilities.py

changeset 945
8cd4d08fa9f6
parent 791
9ec2ac20e54e
child 1509
c0b5e693b0eb
equal deleted inserted replaced
944:1b59c4ba121e 945:8cd4d08fa9f6
5 5
6 """ 6 """
7 Module defining the debug clients capabilities. 7 Module defining the debug clients capabilities.
8 """ 8 """
9 9
10 HasDebugger = 0x0001 10 HasDebugger = 0x0001
11 HasInterpreter = 0x0002 11 HasInterpreter = 0x0002
12 HasProfiler = 0x0004 12 HasProfiler = 0x0004
13 HasCoverage = 0x0008 13 HasCoverage = 0x0008
14 HasCompleter = 0x0010 14 HasCompleter = 0x0010
15 HasUnittest = 0x0020 15 HasUnittest = 0x0020
16 HasShell = 0x0040 16 HasShell = 0x0040
17 17
18 HasAll = HasDebugger | HasInterpreter | HasProfiler | \ 18 HasAll = HasDebugger | HasInterpreter | HasProfiler | \
19 HasCoverage | HasCompleter | HasUnittest | HasShell 19 HasCoverage | HasCompleter | HasUnittest | HasShell
20 20
21 # 21 #

eric ide

mercurial