--- a/src/eric7/Plugins/VcsPlugins/vcsGit/GitBisectLogBrowserDialog.py Fri Dec 22 19:45:17 2023 +0100 +++ b/src/eric7/Plugins/VcsPlugins/vcsGit/GitBisectLogBrowserDialog.py Sat Dec 23 15:40:23 2023 +0100 @@ -41,7 +41,9 @@ Constructor @param vcs reference to the vcs object - @param parent reference to the parent widget (QWidget) + @type Git + @param parent reference to the parent widget + @type QWidget """ super().__init__(parent) self.setupUi(self) @@ -82,7 +84,8 @@ """ Protected slot implementing a close event handler. - @param e close event (QCloseEvent) + @param e close event + @type QCloseEvent """ if ( self.__process is not None @@ -123,10 +126,14 @@ """ Private method to generate a bisect log tree entry. - @param commitId commit id info (string) - @param operation bisect operation (string) - @param subject subject of the bisect log entry (string) - @return reference to the generated item (QTreeWidgetItem) + @param commitId commit id info + @type str + @param operation bisect operation + @type str + @param subject subject of the bisect log entry + @type str + @return reference to the generated item + @rtype QTreeWidgetItem """ columnLabels = [ commitId, @@ -181,7 +188,8 @@ """ Public slot to start the git bisect log command. - @param projectdir directory name of the project (string) + @param projectdir directory name of the project + @type str """ self.errorGroup.hide() QApplication.processEvents() @@ -204,8 +212,10 @@ """ Private slot connected to the finished signal. - @param exitCode exit code of the process (integer) - @param exitStatus exit status of the process (QProcess.ExitStatus) + @param exitCode exit code of the process + @type int + @param exitStatus exit status of the process + @type QProcess.ExitStatus """ self.__processBuffer() self.__finish() @@ -293,7 +303,8 @@ """ Private slot to show some error. - @param out error to be shown (string) + @param out error to be shown + @type str """ self.errorGroup.show() self.errors.insertPlainText(out) @@ -303,7 +314,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.buttonBox.button(QDialogButtonBox.StandardButton.Close): self.close() @@ -331,7 +343,8 @@ """ Private slot to handle the password checkbox toggled. - @param isOn flag indicating the status of the check box (boolean) + @param isOn flag indicating the status of the check box + @type bool """ if isOn: self.input.setEchoMode(QLineEdit.EchoMode.Password) @@ -370,7 +383,8 @@ """ Protected slot to handle a key press event. - @param evt the key press event (QKeyEvent) + @param evt the key press event + @type QKeyEvent """ if self.intercept: self.intercept = False