eric6/Debugger/StartDialog.py

branch
multi_processing
changeset 7882
617cc27f11af
parent 7874
8dcb77600690
child 7901
6ff7ccf0cb50
diff -r 6c09c023cda5 -r 617cc27f11af eric6/Debugger/StartDialog.py
--- a/eric6/Debugger/StartDialog.py	Thu Dec 17 13:54:47 2020 +0100
+++ b/eric6/Debugger/StartDialog.py	Thu Dec 17 14:20:51 2020 +0100
@@ -162,9 +162,9 @@
         """
         Public method to retrieve the data entered into this dialog.
         
-        @return a tuple of interpreter (string), argv (string), workdir
-            (string), environment (string), exceptions flag (boolean),
-            clear interpreter flag (boolean) and run in console flag (boolean)
+        @return a tuple of interpreter, argv, workdir, environment,
+            exceptions flag, clear interpreter flag and run in console flag
+        @rtype tuple of (str, str, str, str, bool, bool, bool)
         """
         cmdLine = self.ui.cmdlineCombo.currentText()
         workdir = self.ui.workdirPicker.currentText(toNative=False)
@@ -205,7 +205,8 @@
         Public method to retrieve the coverage related data entered into this
         dialog.
         
-        @return flag indicating erasure of coverage info (boolean)
+        @return flag indicating erasure of coverage info
+        @rtype bool
         """
         if self.dialogType == 2:
             return self.ui.eraseCheckBox.isChecked()
@@ -217,7 +218,8 @@
         Public method to retrieve the profiling related data entered into this
         dialog.
         
-        @return flag indicating erasure of profiling info (boolean)
+        @return flag indicating erasure of profiling info
+        @rtype bool
         """
         if self.dialogType == 3:
             return self.ui.eraseCheckBox.isChecked()
@@ -344,7 +346,8 @@
         """
         Private slot called by a button of the button box clicked.
         
-        @param button button that was clicked (QAbstractButton)
+        @param button button that was clicked
+        @type QAbstractButton
         """
         if button == self.clearButton:
             self.__clearHistories()

eric ide

mercurial