--- a/src/eric7/Sessions/SessionFile.py Fri Nov 17 17:53:14 2023 +0100 +++ b/src/eric7/Sessions/SessionFile.py Sat Nov 18 15:18:17 2023 +0100 @@ -164,12 +164,12 @@ "CommandLine": dbgCmdline, "WorkingDirectory": dbgWd, "Environment": dbgEnv, - "ReportExceptions": dbg.exceptions, "Exceptions": dbg.excList, "IgnoredExceptions": dbg.excIgnoreList, "AutoClearShell": dbg.autoClearShell, "TracePython": dbg.tracePython, "AutoContinue": dbg.autoContinue, + "ReportAllExceptions": dbg.reportAllExceptions, "EnableMultiprocess": dbg.enableMultiprocess, "MultiprocessNoDebug": dbgMultiprocessNoDebug, "GlobalConfigOverride": dbg.overrideGlobalConfig, @@ -181,12 +181,12 @@ "CommandLine": project.dbgCmdline, "WorkingDirectory": project.dbgWd, "Environment": project.dbgEnv, - "ReportExceptions": project.dbgReportExceptions, "Exceptions": project.dbgExcList, "IgnoredExceptions": project.dbgExcIgnoreList, "AutoClearShell": project.dbgAutoClearShell, "TracePython": project.dbgTracePython, "AutoContinue": project.dbgAutoContinue, + "ReportAllExceptions": project.dbgReportAllExceptions, "EnableMultiprocess": project.dbgEnableMultiprocess, "MultiprocessNoDebug": project.dbgMultiprocessNoDebug, "GlobalConfigOverride": project.dbgGlobalConfigOverride, @@ -336,12 +336,12 @@ dbg.setArgvHistory(debugInfoDict["CommandLine"]) dbg.setWdHistory(debugInfoDict["WorkingDirectory"]) dbg.setEnvHistory(debugInfoDict["Environment"]) - dbg.setExceptionReporting(debugInfoDict["ReportExceptions"]) dbg.setExcList(debugInfoDict["Exceptions"]) dbg.setExcIgnoreList(debugInfoDict["IgnoredExceptions"]) dbg.setAutoClearShell(debugInfoDict["AutoClearShell"]) dbg.setTracePython(debugInfoDict["TracePython"]) dbg.setAutoContinue(debugInfoDict["AutoContinue"]) + dbg.setExceptionReporting(debugInfoDict["ReportAllExceptions"]) dbg.setEnableMultiprocess(debugInfoDict["EnableMultiprocess"]) dbg.setMultiprocessNoDebugHistory(debugInfoDict["MultiprocessNoDebug"]) dbg.setEnableGlobalConfigOverride(debugInfoDict["GlobalConfigOverride"]) @@ -352,11 +352,11 @@ debugInfoDict["WorkingDirectory"], debugInfoDict["Environment"], debugInfoDict["ReportExceptions"], - debugInfoDict["Exceptions"], debugInfoDict["IgnoredExceptions"], debugInfoDict["AutoClearShell"], debugInfoDict["TracePython"], debugInfoDict["AutoContinue"], + debugInfoDict["ReportAllExceptions"], debugInfoDict["EnableMultiprocess"], debugInfoDict["MultiprocessNoDebug"], debugInfoDict["GlobalConfigOverride"],