eric6/DebugClients/Python/BreakpointWatch.py

changeset 7900
72b88fb20261
parent 7639
422fd05e9c91
child 7923
91e843545d9a
equal deleted inserted replaced
7899:ecf67e07b6e0 7900:72b88fb20261
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
196 @type str 196 @type str
197 @param compiledCond precompiled condition 197 @param compiledCond precompiled condition
198 @type code object 198 @type code object
199 @param flag indicates type of watch (created or changed) 199 @param flag indicates type of watch (created or changed)
200 @type str 200 @type str
201 @keyparam temporary flag for temporary watches 201 @param temporary flag for temporary watches
202 @type bool 202 @type bool
203 """ 203 """
204 # Should not occur 204 # Should not occur
205 if not cond: 205 if not cond:
206 return 206 return

eric ide

mercurial