src/eric7/DebugClients/Python/DebugClientCapabilities.py

Sun, 27 Apr 2025 20:38:55 +0200

author
T.Rzepka <Tobias.Rzepka@gmail.com>
date
Sun, 27 Apr 2025 20:38:55 +0200
branch
eric7
changeset 11244
d0060bbd5da8
parent 11090
f5f5f5803935
child 11118
967a88a16a21
permissions
-rw-r--r--

Bugfix for shell completion of attributes in Python 3.13.

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