src/eric7/DebugClients/Python/DebugClientCapabilities.py

Fri, 02 Feb 2024 14:33:16 +0100

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Fri, 02 Feb 2024 14:33:16 +0100
branch
eric7
changeset 10542
e46910b0ce73
parent 10439
21c28b0f9e41
child 10460
3b34efa2857c
child 11090
f5f5f5803935
permissions
-rw-r--r--

DebugClient
- Added a check, if the debug client still controls the exception handling and regain that control in case the program being debugged took it.

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

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

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

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

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

eric ide

mercurial