diff -r 866adc8c315b -r 0acf98cd089a eric6/DebugClients/Python/DebugClient.py --- a/eric6/DebugClients/Python/DebugClient.py Sun Jan 17 13:53:08 2021 +0100 +++ b/eric6/DebugClients/Python/DebugClient.py Mon Feb 01 10:38:16 2021 +0100 @@ -10,14 +10,12 @@ from DebugBase import DebugBase from DebugClientBase import DebugClientBase from ThreadExtension import ThreadExtension +from ModuleLoader import ModuleLoader class DebugClient(DebugClientBase, DebugBase, ThreadExtension): """ Class implementing the client side of the debugger. - - This variant of the debugger implements the standard debugger client - by subclassing all relevant base classes. """ def __init__(self): """ @@ -29,7 +27,7 @@ ThreadExtension.__init__(self) - self.variant = 'Standard' + self.__moduleLoader = ModuleLoader(self) # We are normally called by the debugger to execute directly.