DebugClients/Python/DebugClientCapabilities.py

changeset 5141
bc64243b7672
parent 5126
d28b92dabc2b
parent 5140
01484c0afbc6
child 5144
1ab536d25072
equal deleted inserted replaced
5126:d28b92dabc2b 5141:bc64243b7672
1 # -*- coding: utf-8 -*-
2
3 # Copyright (c) 2005 - 2016 Detlev Offenbach <detlev@die-offenbachs.de>
4 #
5
6 """
7 Module defining the debug clients capabilities.
8 """
9
10 HasDebugger = 0x0001
11 HasInterpreter = 0x0002
12 HasProfiler = 0x0004
13 HasCoverage = 0x0008
14 HasCompleter = 0x0010
15 HasUnittest = 0x0020
16 HasShell = 0x0040
17
18 HasAll = HasDebugger | HasInterpreter | HasProfiler | \
19 HasCoverage | HasCompleter | HasUnittest | HasShell
20
21 #
22 # eflag: FileType = Python2
23 # eflag: noqa = M601, M702

eric ide

mercurial