@@ -86,7 +86,7 @@ The :mod:`bdb` module also defines two classes:
86
86
87
87
.. attribute :: temporary
88
88
89
- True if a :class: `Breakpoint ` at (file, line) is temporary.
89
+ `` True `` if a :class: `Breakpoint ` at (file, line) is temporary.
90
90
91
91
.. attribute :: cond
92
92
@@ -99,7 +99,7 @@ The :mod:`bdb` module also defines two classes:
99
99
100
100
.. attribute :: enabled
101
101
102
- True if :class: `Breakpoint ` is enabled.
102
+ `` True `` if :class: `Breakpoint ` is enabled.
103
103
104
104
.. attribute :: bpbynumber
105
105
@@ -215,22 +215,22 @@ The :mod:`bdb` module also defines two classes:
215
215
216
216
.. method :: is_skipped_line(module_name)
217
217
218
- Return True if *module_name * matches any skip pattern.
218
+ Return `` True `` if *module_name * matches any skip pattern.
219
219
220
220
.. method :: stop_here(frame)
221
221
222
- Return True if *frame * is below the starting frame in the stack.
222
+ Return `` True `` if *frame * is below the starting frame in the stack.
223
223
224
224
.. method :: break_here(frame)
225
225
226
- Return True if there is an effective breakpoint for this line.
226
+ Return `` True `` if there is an effective breakpoint for this line.
227
227
228
228
Check whether a line or function breakpoint exists and is in effect. Delete temporary
229
229
breakpoints based on information from :func: `effective `.
230
230
231
231
.. method :: break_anywhere(frame)
232
232
233
- Return True if any breakpoint exists for *frame *'s filename.
233
+ Return `` True `` if any breakpoint exists for *frame *'s filename.
234
234
235
235
Derived classes should override these methods to gain control over debugger
236
236
operation.
@@ -344,7 +344,7 @@ The :mod:`bdb` module also defines two classes:
344
344
345
345
.. method :: get_break(filename, lineno)
346
346
347
- Return True if there is a breakpoint for *lineno * in *filename *.
347
+ Return `` True `` if there is a breakpoint for *lineno * in *filename *.
348
348
349
349
.. method :: get_breaks(filename, lineno)
350
350
@@ -408,7 +408,7 @@ Finally, the module defines the following functions:
408
408
409
409
.. function :: checkfuncname(b, frame)
410
410
411
- Return True if we should break here, depending on the way the
411
+ Return `` True `` if we should break here, depending on the way the
412
412
:class: `Breakpoint ` *b * was set.
413
413
414
414
If it was set via line number, it checks if
@@ -427,14 +427,14 @@ Finally, the module defines the following functions:
427
427
:attr: `bplist <bdb.Breakpoint.bplist> ` for the
428
428
(:attr: `file <bdb.Breakpoint.file> `, :attr: `line <bdb.Breakpoint.line> `)
429
429
(which must exist) that is :attr: `enabled <bdb.Breakpoint.enabled> `, for
430
- which :func: `checkfuncname ` is True , and that has neither a False
430
+ which :func: `checkfuncname ` is true , and that has neither a false
431
431
:attr: `condition <bdb.Breakpoint.cond> ` nor positive
432
432
:attr: `ignore <bdb.Breakpoint.ignore> ` count. The *flag *, meaning that a
433
- temporary breakpoint should be deleted, is False only when the
433
+ temporary breakpoint should be deleted, is `` False `` only when the
434
434
:attr: `cond <bdb.Breakpoint.cond> ` cannot be evaluated (in which case,
435
435
:attr: `ignore <bdb.Breakpoint.ignore> ` count is ignored).
436
436
437
- If no such entry exists, then (None, None) is returned.
437
+ If no such entry exists, then `` (None, None) `` is returned.
438
438
439
439
440
440
.. function :: set_trace()
0 commit comments