DebugClients/Python3/BreakpointWatch.py

branch
debugger speed
changeset 5170
fb9168c2e069
parent 5081
4c896f626bd6
child 5174
8c48f5e0cd92
equal deleted inserted replaced
5088:5b992bcb3c86 5170:fb9168c2e069
117 @param lineno the linenumber of the bp to retrieve 117 @param lineno the linenumber of the bp to retrieve
118 @type int 118 @type int
119 @return Breakpoint or None, if there is no bp 119 @return Breakpoint or None, if there is no bp
120 @rtype Breakpoint object or None 120 @rtype Breakpoint object or None
121 """ 121 """
122 return Breakpoint.breaks.get(filename, lineno) 122 return Breakpoint.breaks.get((filename, lineno))
123 123
124 @staticmethod 124 @staticmethod
125 def effectiveBreak(filename, lineno, frame): 125 def effectiveBreak(filename, lineno, frame):
126 """ 126 """
127 Public method to determine which breakpoint for this filename:lineno 127 Public method to determine which breakpoint for this filename:lineno

eric ide

mercurial