515 def get_break(self, filename, lineno): |
515 def get_break(self, filename, lineno): |
516 """ |
516 """ |
517 Public method reimplemented from bdb.py to get the first breakpoint of |
517 Public method reimplemented from bdb.py to get the first breakpoint of |
518 a particular line. |
518 a particular line. |
519 |
519 |
520 Because eric5 supports only one breakpoint per line, this overwritten |
520 Because eric6 supports only one breakpoint per line, this overwritten |
521 method will return this one and only breakpoint. |
521 method will return this one and only breakpoint. |
522 |
522 |
523 @param filename the filename of the bp to retrieve (string) |
523 @param filename the filename of the bp to retrieve (string) |
524 @param lineno the linenumber of the bp to retrieve (integer) |
524 @param lineno the linenumber of the bp to retrieve (integer) |
525 @return breakpoint or None, if there is no bp |
525 @return breakpoint or None, if there is no bp |