diff -r ecf67e07b6e0 -r 72b88fb20261 eric6/DebugClients/Python/DebugBase.py --- a/eric6/DebugClients/Python/DebugBase.py Sat Dec 19 15:06:20 2020 +0100 +++ b/eric6/DebugClients/Python/DebugBase.py Sat Dec 19 15:22:26 2020 +0100 @@ -140,7 +140,7 @@ Public method to return the locals dictionary of the current frame or a frame below. - @keyparam frmnr distance of frame to get locals dictionary of. 0 is + @param frmnr distance of frame to get locals dictionary of. 0 is the current frame (int) @return locals dictionary of the frame """ @@ -155,7 +155,7 @@ Public method to store the locals into the frame, so an access to frame.f_locals returns the last data. - @keyparam frmnr distance of frame to store locals dictionary to. 0 is + @param frmnr distance of frame to store locals dictionary to. 0 is the current frame (int) """ cf = self.currentFrame @@ -401,7 +401,7 @@ Because of jump optimizations it's not possible to use sys.breakpoint() as last instruction in a function or method. - @keyparam frame frame to start debugging from + @param frame frame to start debugging from @type frame object """ if frame is None: @@ -751,9 +751,9 @@ """ Public method to get the stack. - @keyparam frame frame object to inspect + @param frame frame object to inspect @type frame object or list - @keyparam applyTrace flag to assign trace function to fr.f_trace + @param applyTrace flag to assign trace function to fr.f_trace @type bool @return list of lists with file name (string), line number (integer) and function name (string) @@ -847,7 +847,7 @@ @param excinfo details about the exception @type tuple(Exception, excval object, traceback frame object) - @keyparam unhandled flag indicating an uncaught exception + @param unhandled flag indicating an uncaught exception @type bool """ exctype, excval, exctb = excinfo