src/eric7/Debugger/EditBreakpointDialog.py

branch
eric7
changeset 10417
c6011e501282
parent 10217
7888177e7463
child 10439
21c28b0f9e41
--- a/src/eric7/Debugger/EditBreakpointDialog.py	Sat Dec 16 17:52:02 2023 +0100
+++ b/src/eric7/Debugger/EditBreakpointDialog.py	Sun Dec 17 17:15:19 2023 +0100
@@ -36,17 +36,23 @@
         """
         Constructor
 
-        @param breakPointId id of the breakpoint (tuple)
-                (filename, linenumber)
-        @param properties properties for the breakpoint (tuple)
-                (condition, temporary flag, enabled flag, ignore count)
-        @param condHistory the list of conditionals history (list of strings)
-        @param parent the parent of this dialog (QWidget)
-        @param name the widget name of this dialog (string)
-        @param modal flag indicating a modal dialog (boolean)
-        @param addMode flag indicating the add mode (boolean)
+        @param breakPointId id of the breakpoint (tuple of (filename, line number)
+        @type tuple of (str, int)
+        @param properties properties for the breakpoint (tuple of (condition,
+            temporary flag, enabled flag, ignore count)
+        @type tuple of (str, bool, bool, int)
+        @param condHistory the list of conditionals history
+        @type list of str
+        @param parent the parent of this dialog
+        @type QWidget
+        @param name the widget name of this dialog
+        @type str
+        @param modal flag indicating a modal dialog
+        @type bool
+        @param addMode flag indicating the add mode
+        @type bool
         @param filenameHistory list of recently used file names
-            (list of strings)
+        @type list of str
         """
         super().__init__(parent)
         self.setupUi(self)
@@ -132,7 +138,8 @@
         """
         Private slot to handle the change of the filename.
 
-        @param fn text of the filename edit (string)
+        @param fn text of the filename edit
+        @type str
         """
         self.buttonBox.button(QDialogButtonBox.StandardButton.Ok).setEnabled(bool(fn))
 
@@ -142,6 +149,7 @@
 
         @return a tuple containing the breakpoints new properties
             (condition, temporary flag, enabled flag, ignore count)
+        @rtype tuple of (str, bool, bool, int)
         """
         return (
             self.conditionCombo.currentText(),
@@ -157,6 +165,7 @@
         @return a tuple containing the new breakpoints properties
             (filename, lineno, condition, temporary flag, enabled flag,
             ignore count)
+        @rtype tuple of (str, int, str, bool, bool, int)
         """
         fn = self.filenamePicker.currentText()
         fn = os.path.expanduser(os.path.expandvars(fn)) if fn else None

eric ide

mercurial