--- a/eric6/Plugins/CheckerPlugins/CodeStyleChecker/Security/SecurityUtils.py Mon Jun 08 08:17:14 2020 +0200 +++ b/eric6/Plugins/CheckerPlugins/CodeStyleChecker/Security/SecurityUtils.py Mon Jun 08 20:08:27 2020 +0200 @@ -36,6 +36,7 @@ @type str @return qualified name of the module @rtype str + @exception InvalidModulePath raised to indicate an invalid module path """ (head, tail) = os.path.split(path) if head == '' or tail == '': @@ -171,6 +172,8 @@ """ Function to recurs through an attribute chain to get the ultimate value. + @param obj reference to the object to be recursed + @type ast.Name or ast.Attribute @param attr attribute chain to be parsed @type ast.Attribute @return ultimate value