src/eric7/DebugClients/Python/DebugClientCapabilities.py

Fri, 25 Apr 2025 16:23:02 +0200

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Fri, 25 Apr 2025 16:23:02 +0200
branch
eric7
changeset 11236
75c26fe1d1c7
parent 11090
f5f5f5803935
child 11118
967a88a16a21
permissions
-rw-r--r--

MicroPython
- Extended the handling of Access Point security/authmode settings to be more dynamic.

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

# Copyright (c) 2005 - 2025 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