diff -r ecf67e07b6e0 -r 72b88fb20261 eric6/Project/Project.py --- a/eric6/Project/Project.py Sat Dec 19 15:06:20 2020 +0100 +++ b/eric6/Project/Project.py Sat Dec 19 15:22:26 2020 +0100 @@ -323,15 +323,15 @@ @param type_ internal type designator to be registered (string) @param description more verbose type name (display string) (string) - @keyparam fileTypeCallback reference to a method returning a dictionary + @param fileTypeCallback reference to a method returning a dictionary of filetype associations. - @keyparam binaryTranslationsCallback reference to a method returning + @param binaryTranslationsCallback reference to a method returning the name of the binary translation file given the name of the raw translation file - @keyparam lexerAssociationCallback reference to a method returning the + @param lexerAssociationCallback reference to a method returning the lexer type to be used for syntax highlighting given the name of a file - @keyparam progLanguages programming languages supported by the + @param progLanguages programming languages supported by the project type (list of string) """ if progLanguages: @@ -974,7 +974,7 @@ @param quiet flag indicating quiet operations. If this flag is true, no errors are reported. - @keyparam indicator indicator string (string) + @param indicator indicator string (string) """ if self.pfile is None: if not quiet: @@ -1013,7 +1013,7 @@ @param quiet flag indicating quiet operations. If this flag is true, no errors are reported. - @keyparam indicator indicator string (string) + @param indicator indicator string (string) """ if self.pfile is None: if not quiet: @@ -1324,10 +1324,10 @@ @param autoClearShell flag indicating, that the interpreter window should be cleared @type bool - @keyparam tracePython flag to indicate if the Python library should be + @param tracePython flag to indicate if the Python library should be traced as well @type bool - @keyparam autoContinue flag indicating, that the debugger should not + @param autoContinue flag indicating, that the debugger should not stop at the first executable line @type bool """ @@ -2880,7 +2880,7 @@ @param fn optional filename of the project file to be read @param restoreSession flag indicating to restore the project session (boolean) - @keyparam reopen flag indicating a reopening of the project (boolean) + @param reopen flag indicating a reopening of the project (boolean) """ if not self.checkDirty(): return @@ -3161,8 +3161,8 @@ """ Public slot to close the current project. - @keyparam reopen flag indicating a reopening of the project (boolean) - @keyparam noSave flag indicating to not perform save actions (boolean) + @param reopen flag indicating a reopening of the project (boolean) + @param noSave flag indicating to not perform save actions (boolean) @return flag indicating success (boolean) """ # save the list of recently opened projects @@ -3264,7 +3264,7 @@ """ Public method to save all scripts belonging to the project. - @keyparam reportSyntaxErrors flag indicating special reporting + @param reportSyntaxErrors flag indicating special reporting for syntax errors (boolean) @return flag indicating success (boolean) """ @@ -3296,7 +3296,7 @@ Public method to check all scripts belonging to the project for their dirty status. - @keyparam reportSyntaxErrors flag indicating special reporting + @param reportSyntaxErrors flag indicating special reporting for syntax errors (boolean) @return flag indicating success (boolean) """