506 def get_break(self, filename, lineno): |
506 def get_break(self, filename, lineno): |
507 """ |
507 """ |
508 Public method reimplemented from bdb.py to get the first breakpoint of |
508 Public method reimplemented from bdb.py to get the first breakpoint of |
509 a particular line. |
509 a particular line. |
510 |
510 |
511 Because eric5 supports only one breakpoint per line, this overwritten |
511 Because eric6 supports only one breakpoint per line, this overwritten |
512 method will return this one and only breakpoint. |
512 method will return this one and only breakpoint. |
513 |
513 |
514 @param filename filename of the bp to retrieve (string) |
514 @param filename filename of the bp to retrieve (string) |
515 @param lineno linenumber of the bp to retrieve (integer) |
515 @param lineno linenumber of the bp to retrieve (integer) |
516 @return breakpoint or None, if there is no bp |
516 @return breakpoint or None, if there is no bp |