35 |
35 |
36 @param filename file name where a breakpoint is set |
36 @param filename file name where a breakpoint is set |
37 @type str |
37 @type str |
38 @param lineno line number of the breakpoint |
38 @param lineno line number of the breakpoint |
39 @type int |
39 @type int |
40 @keyparam temporary flag to indicate a temporary breakpoint |
40 @param temporary flag to indicate a temporary breakpoint |
41 @type bool |
41 @type bool |
42 @keyparam cond Python expression which dynamically enables this bp |
42 @param cond Python expression which dynamically enables this bp |
43 @type str |
43 @type str |
44 """ |
44 """ |
45 filename = os.path.abspath(filename) |
45 filename = os.path.abspath(filename) |
46 self.file = filename |
46 self.file = filename |
47 self.line = lineno |
47 self.line = lineno |