--- a/src/eric7/Utilities/ClassBrowsers/rbclbr.py Thu Dec 21 15:46:22 2023 +0100 +++ b/src/eric7/Utilities/ClassBrowsers/rbclbr.py Thu Dec 21 19:50:01 2023 +0100 @@ -190,10 +190,15 @@ Constructor @param module name of the module containing this class + @type str @param name name of this class + @type str @param superClasses list of class names this class is inherited from + @type list of str @param file filename containing this class + @type str @param lineno linenumber of the class definition + @type int """ ClbrBaseClasses.Class.__init__(self, module, name, superClasses, file, lineno) VisibilityMixin.__init__(self) @@ -209,9 +214,13 @@ Constructor @param module name of the module containing this class + @type str @param name name of this class + @type str @param file filename containing this class + @type str @param lineno linenumber of the class definition + @type int """ ClbrBaseClasses.Module.__init__(self, module, name, file, lineno) VisibilityMixin.__init__(self) @@ -227,11 +236,17 @@ Constructor @param module name of the module containing this function + @type str @param name name of this function + @type str @param file filename containing this class + @type str @param lineno linenumber of the class definition - @param signature parameterlist of the method + @type int + @param signature parameter list of the method + @type str @param separator string separating the parameters + @type str """ ClbrBaseClasses.Function.__init__( self, module, name, file, lineno, signature, separator @@ -249,9 +264,13 @@ Constructor @param module name of the module containing this class + @type str @param name name of this class + @type str @param file filename containing this attribute + @type str @param lineno linenumber of the class definition + @type int """ ClbrBaseClasses.Attribute.__init__(self, module, name, file, lineno) VisibilityMixin.__init__(self)