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 |