comparison: src/eric7/DebugClients/Python/DebugClientCapabilities.py
src/eric7/DebugClients/Python/DebugClientCapabilities.py
- branch
- eric7-maintenance
- changeset 9264
- 18a7312cfdb3
- parent 9192
- a763d57e23bc
- parent 9221
- bf71ee032bb4
- child 9654
- 7328efba128b
equal
deleted
inserted
replaced
|
1 # -*- coding: utf-8 -*- |
|
2 |
|
3 # Copyright (c) 2005 - 2022 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 HasShell = 0x0020 |
|
16 |
|
17 HasAll = ( |
|
18 HasDebugger | HasInterpreter | HasProfiler | HasCoverage | HasCompleter | HasShell |
|
19 ) |