--- a/eric7/DebugClients/Python/DebugClientCapabilities.py Wed May 18 09:19:09 2022 +0200 +++ b/eric7/DebugClients/Python/DebugClientCapabilities.py Wed May 18 10:54:32 2022 +0200 @@ -7,15 +7,12 @@ Module defining the debug clients capabilities. """ -# TODO: remove unittest support from Python debugger - HasDebugger = 0x0001 HasInterpreter = 0x0002 HasProfiler = 0x0004 HasCoverage = 0x0008 HasCompleter = 0x0010 -HasUnittest = 0x0020 -HasShell = 0x0040 +HasShell = 0x0020 -HasAll = (HasDebugger | HasInterpreter | HasProfiler | - HasCoverage | HasCompleter | HasUnittest | HasShell) +HasAll = (HasDebugger | HasInterpreter | HasProfiler | HasCoverage | + HasCompleter | HasShell)