diff -r 50b299f6eb98 -r 223fa32b3a32 DebugClients/Python/BreakpointWatch.py --- a/DebugClients/Python/BreakpointWatch.py Thu Jul 20 18:42:33 2017 +0200 +++ b/DebugClients/Python/BreakpointWatch.py Thu Jul 20 18:53:24 2017 +0200 @@ -83,7 +83,7 @@ @staticmethod def clear_break(filename, lineno): """ - Public method reimplemented from bdb.py to clear a breakpoint. + Static method reimplemented from bdb.py to clear a breakpoint. @param filename file name of the bp to retrieve @type str @@ -98,7 +98,7 @@ @staticmethod def clear_all_breaks(): """ - Public method to clear all breakpoints. + Static method to clear all breakpoints. """ Breakpoint.breaks.clear() Breakpoint.breakInFile.clear() @@ -107,7 +107,7 @@ @staticmethod def get_break(filename, lineno): """ - Public method to get the breakpoint of a particular line. + Static method to get the breakpoint of a particular line. Because eric6 supports only one breakpoint per line, this method will return only one breakpoint. @@ -124,7 +124,7 @@ @staticmethod def effectiveBreak(filename, lineno, frame): """ - Public method to determine which breakpoint for this filename:lineno + Static method to determine which breakpoint for this filename:lineno is to be acted upon. Called only if we know there is a bpt at this @@ -248,7 +248,7 @@ @staticmethod def clear_watch(cond): """ - Public method to clear a watch expression. + Static method to clear a watch expression. @param cond expression of the watch expression to be cleared @type str @@ -261,14 +261,14 @@ @staticmethod def clear_all_watches(): """ - Public method to clear all watch expressions. + Static method to clear all watch expressions. """ del Watch.watches[:] @staticmethod def get_watch(cond): """ - Public method to get a watch expression. + Static method to get a watch expression. @param cond expression of the watch expression to be cleared @type str @@ -282,7 +282,7 @@ @staticmethod def effectiveWatch(frame): """ - Public method to determine, if a watch expression is effective. + Static method to determine, if a watch expression is effective. @param frame the current execution frame @type frame object