src/eric7/Debugger/ExceptionLogger.py

branch
eric7
changeset 9221
bf71ee032bb4
parent 9209
b99e7fd55fd3
child 9413
80c06d472826
--- a/src/eric7/Debugger/ExceptionLogger.py	Wed Jul 13 11:16:20 2022 +0200
+++ b/src/eric7/Debugger/ExceptionLogger.py	Wed Jul 13 14:55:47 2022 +0200
@@ -18,25 +18,26 @@
 class ExceptionLogger(QTreeWidget):
     """
     Class implementing the Exception Logger widget.
-    
+
     This class displays a log of all exceptions having occured during
     a debugging session.
-    
+
     @signal sourceFile(string, int) emitted to open a source file at a line
     """
+
     sourceFile = pyqtSignal(str, int)
-    
+
     def __init__(self, parent=None):
         """
         Constructor
-        
+
         @param parent the parent widget of this widget
         """
         super().__init__(parent)
         self.setObjectName("ExceptionLogger")
-        
+
         self.setWindowTitle(self.tr("Exceptions"))
-        
+
         self.setWordWrap(True)
         self.setRootIsDecorated(True)
         self.setHeaderLabels([self.tr("Exception")])
@@ -46,31 +47,33 @@
         self.customContextMenuRequested.connect(self.__showContextMenu)
         self.itemDoubleClicked.connect(self.__itemDoubleClicked)
 
-        self.setWhatsThis(self.tr(
-            """<b>Exceptions Logger</b>"""
-            """<p>This windows shows a trace of all exceptions, that have"""
-            """ occured during the last debugging session. Initially only"""
-            """ the exception type and exception message are shown. After"""
-            """ the expansion of this entry, the complete call stack as"""
-            """ reported by the client is show with the most recent call"""
-            """ first.</p>"""
-        ))
-        
+        self.setWhatsThis(
+            self.tr(
+                """<b>Exceptions Logger</b>"""
+                """<p>This windows shows a trace of all exceptions, that have"""
+                """ occured during the last debugging session. Initially only"""
+                """ the exception type and exception message are shown. After"""
+                """ the expansion of this entry, the complete call stack as"""
+                """ reported by the client is show with the most recent call"""
+                """ first.</p>"""
+            )
+        )
+
         self.menu = QMenu(self)
         self.menu.addAction(self.tr("Show source"), self.__openSource)
         self.menu.addAction(self.tr("Clear"), self.clear)
         self.menu.addSeparator()
         self.menu.addAction(self.tr("Configure..."), self.__configure)
-        
+
         self.backMenu = QMenu(self)
         self.backMenu.addAction(self.tr("Clear"), self.clear)
         self.backMenu.addSeparator()
         self.backMenu.addAction(self.tr("Configure..."), self.__configure)
-        
+
     def __itemDoubleClicked(self, itm):
         """
         Private slot to handle the double click of an item.
-        
+
         @param itm the item that was double clicked(QTreeWidgetItem), ignored
         """
         self.__openSource()
@@ -78,7 +81,7 @@
     def __showContextMenu(self, coord):
         """
         Private slot to show the context menu of the listview.
-        
+
         @param coord the global coordinates of the mouse pointer (QPoint)
         """
         itm = self.itemAt(coord)
@@ -87,12 +90,11 @@
             self.backMenu.popup(coord)
         else:
             self.menu.popup(coord)
-            
-    def addException(self, exceptionType, exceptionMessage, stackTrace,
-                     debuggerId):
+
+    def addException(self, exceptionType, exceptionMessage, stackTrace, debuggerId):
         """
         Public slot to handle the arrival of a new exception.
-        
+
         @param exceptionType type of exception raised
         @type str
         @param exceptionMessage message given by the exception
@@ -105,50 +107,53 @@
         itm = QTreeWidgetItem(self)
         if exceptionType is None:
             itm.setText(
-                0, self.tr('{0}: An unhandled exception occured.'
-                           ' See the shell window for details.')
-                .format(debuggerId))
+                0,
+                self.tr(
+                    "{0}: An unhandled exception occured."
+                    " See the shell window for details."
+                ).format(debuggerId),
+            )
             return
-        
+
         text = (
             self.tr("{0}: {1}").format(debuggerId, exceptionType)
-            if not exceptionMessage else
-            self.tr("{0}: {1}, {2}").format(debuggerId, exceptionType,
-                                            exceptionMessage)
+            if not exceptionMessage
+            else self.tr("{0}: {1}, {2}").format(
+                debuggerId, exceptionType, exceptionMessage
+            )
         )
-        
+
         itm.setText(0, text)
         itm.setToolTip(0, text)
-        
+
         # now add the call stack, most recent call first
         for entry in stackTrace:
             excitm = QTreeWidgetItem(itm)
             excitm.setText(0, "{0}, {1:d}".format(entry[0], entry[1]))
-            
+
     def debuggingStarted(self):
         """
         Public slot to clear the listview upon starting a new debugging
         session.
         """
         self.clear()
-        
+
     def __openSource(self):
         """
         Private slot to handle a double click on an entry.
         """
         itm = self.currentItem()
-        
+
         if itm.parent() is None:
             return
-            
+
         entry = itm.text(0)
         entryList = entry.split(",")
         with contextlib.suppress(IndexError, ValueError):
             self.sourceFile.emit(entryList[0], int(entryList[1]))
-    
+
     def __configure(self):
         """
         Private method to open the configuration dialog.
         """
-        ericApp().getObject("UserInterface").showPreferences(
-            "debuggerGeneralPage")
+        ericApp().getObject("UserInterface").showPreferences("debuggerGeneralPage")

eric ide

mercurial