Fri, 30 Jul 2021 13:44:39 +0200
Debug Client: changed code to disable multi processing support when running a unit test with debugger support.
(grafted from be0f160a3cdb15e387a711f23f0641df881e9f3a)
eric7/DebugClients/Python/DebugClientBase.py | file | annotate | diff | comparison | revisions |
--- a/eric7/DebugClients/Python/DebugClientBase.py Fri Jul 30 13:43:42 2021 +0200 +++ b/eric7/DebugClients/Python/DebugClientBase.py Fri Jul 30 13:44:39 2021 +0200 @@ -922,6 +922,7 @@ self.cover.start() self.debugging = params["debug"] if params["debug"]: + self.multiprocessSupport = False locals_ = locals() self.threads.clear() self.attachThread(mainThread=True)