src/eric7/DebugClients/Python/DebugClientCapabilities.py

Wed, 07 Feb 2024 15:28:08 +0100

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Wed, 07 Feb 2024 15:28:08 +0100
branch
eric7
changeset 10552
c5b0c8a5fa7d
parent 10439
21c28b0f9e41
child 10460
3b34efa2857c
child 11090
f5f5f5803935
permissions
-rw-r--r--

Changed the interface to the debug client to make it a bit more robust and harmonize it with other such interfaces.
(grafted from d80184d38152028028839a3e0ce75bacc698e3da)

# -*- 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