@@ -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.
@@ -348,7 +348,7 @@ The :mod:`bdb` module also defines two classes:
348
348
349
349
.. method :: get_break(filename, lineno)
350
350
351
- Return True if there is a breakpoint for *lineno * in *filename *.
351
+ Return `` True `` if there is a breakpoint for *lineno * in *filename *.
352
352
353
353
.. method :: get_breaks(filename, lineno)
354
354
@@ -412,7 +412,7 @@ Finally, the module defines the following functions:
412
412
413
413
.. function :: checkfuncname(b, frame)
414
414
415
- Return True if we should break here, depending on the way the
415
+ Return `` True `` if we should break here, depending on the way the
416
416
:class: `Breakpoint ` *b * was set.
417
417
418
418
If it was set via line number, it checks if
@@ -431,14 +431,14 @@ Finally, the module defines the following functions:
431
431
:attr: `bplist <bdb.Breakpoint.bplist> ` for the
432
432
(:attr: `file <bdb.Breakpoint.file> `, :attr: `line <bdb.Breakpoint.line> `)
433
433
(which must exist) that is :attr: `enabled <bdb.Breakpoint.enabled> `, for
434
- which :func: `checkfuncname ` is True , and that has neither a False
434
+ which :func: `checkfuncname ` is true , and that has neither a false
435
435
:attr: `condition <bdb.Breakpoint.cond> ` nor positive
436
436
:attr: `ignore <bdb.Breakpoint.ignore> ` count. The *flag *, meaning that a
437
- temporary breakpoint should be deleted, is False only when the
437
+ temporary breakpoint should be deleted, is `` False `` only when the
438
438
:attr: `cond <bdb.Breakpoint.cond> ` cannot be evaluated (in which case,
439
439
:attr: `ignore <bdb.Breakpoint.ignore> ` count is ignored).
440
440
441
- If no such entry exists, then (None, None) is returned.
441
+ If no such entry exists, then `` (None, None) `` is returned.
442
442
443
443
444
444
.. function :: set_trace()
0 commit comments