diff -r e8eb8370ea94 -r c4c17121eff8 eric6/DebugClients/Python/DebugVariables.py --- a/eric6/DebugClients/Python/DebugVariables.py Sat Jan 16 16:32:01 2021 +0100 +++ b/eric6/DebugClients/Python/DebugVariables.py Sat Jan 16 16:50:00 2021 +0100 @@ -74,8 +74,9 @@ @param var variable to be converted @type any - @return dictionary containing the variable attributes - @rtype dict + @yield tuple containing the batch start index and a dictionary + containing the variable attributes + @ytype tuple of (int, dict) """ names = dir(var) if not names and hasattr(var, "__members__"): @@ -151,8 +152,9 @@ @param var variable to be converted @type any - @return dictionary containing the variable attributes - @rtype dict + @yield tuple containing the batch start index and a dictionary + containing the variable attributes + @ytype tuple of (int, dict) """ d = {} start = count = 0 @@ -216,8 +218,9 @@ @param var variable to be converted @type any - @return dictionary containing the variable attributes - @rtype dict + @yield tuple containing the batch start index and a dictionary + containing the variable attributes + @ytype tuple of (int, dict) """ d = {} start = count = 0 @@ -314,8 +317,9 @@ @param var variable to be converted @type any - @return dictionary containing the variable attributes - @rtype dict + @yield tuple containing the batch start index and a dictionary + containing the variable attributes + @ytype tuple of (int, dict) """ d = {} start = count = 0 @@ -404,8 +408,9 @@ @param var variable to be converted @type any - @return dictionary containing the variable attributes - @rtype dict + @yield tuple containing the batch start index and a dictionary + containing the variable attributes + @ytype tuple of (int, dict) """ d = {} start = count = 0 @@ -496,8 +501,9 @@ @param var variable to be converted @type any - @return dictionary containing the variable attributes - @rtype dict + @yield tuple containing the batch start index and a dictionary + containing the variable attributes + @ytype tuple of (int, dict) """ d = {} start = count = 0 @@ -579,8 +585,9 @@ @param var variable to be converted @type any - @return dictionary containing the variable attributes - @rtype dict + @yield tuple containing the batch start index and a dictionary + containing the variable attributes + @ytype tuple of (int, dict) """ d = {} start = count = 0