--- a/eric6/Graphics/GraphicsUtilities.py Mon May 03 19:42:27 2021 +0200 +++ b/eric6/Graphics/GraphicsUtilities.py Mon May 03 19:58:28 2021 +0200 @@ -25,9 +25,13 @@ The algorithm was taken from Boa Constructor. @param nodes list of nodes to be sorted + @type str @param routes list of routes between the nodes + @type list of tuple of (str, str) @param noRecursion flag indicating, if recursion errors should be raised + @type bool @return list of stages + @rtype list of lists of str @exception RecursionError a recursion error was detected """ children, parents = _buildChildrenLists(routes) @@ -97,7 +101,9 @@ Taken from Boa Constructor. @param routes list of routes between nodes + @type list of tuple of (str, str) @return dictionary of child and dictionary of parent relationships + @rtype tuple of (dict, dict) """ childrenTable = {} parentTable = {}