eric7/DebugClients/Python/DebugClientCapabilities.py

Mon, 07 Feb 2022 22:02:35 +0100

author
T.Rzepka <Tobias.Rzepka@gmail.com>
date
Mon, 07 Feb 2022 22:02:35 +0100
branch
eric7
changeset 8940
e91951ff3bbd
parent 8881
54e42bc2437a
child 9066
a219ade50f7c
child 9111
4ac66b6c33a4
permissions
-rw-r--r--

Fixed cascaded imports which could prevent to apply threading patches. Therefore
breakpoints were ignored in such circumstances.

# -*- coding: utf-8 -*-

# Copyright (c) 2005 - 2022 Detlev Offenbach <detlev@die-offenbachs.de>
#

"""
Module defining the debug clients capabilities.
"""

HasDebugger = 0x0001
HasInterpreter = 0x0002
HasProfiler = 0x0004
HasCoverage = 0x0008
HasCompleter = 0x0010
HasUnittest = 0x0020
HasShell = 0x0040

HasAll = (HasDebugger | HasInterpreter | HasProfiler |
          HasCoverage | HasCompleter | HasUnittest | HasShell)

eric ide

mercurial