@@ -86,7 +86,7 @@ The :mod:`bdb` module also defines two classes:
8686
8787 .. attribute :: temporary
8888
89- True if a :class: `Breakpoint ` at (file, line) is temporary.
89+ `` True `` if a :class: `Breakpoint ` at (file, line) is temporary.
9090
9191 .. attribute :: cond
9292
@@ -99,7 +99,7 @@ The :mod:`bdb` module also defines two classes:
9999
100100 .. attribute :: enabled
101101
102- True if :class: `Breakpoint ` is enabled.
102+ `` True `` if :class: `Breakpoint ` is enabled.
103103
104104 .. attribute :: bpbynumber
105105
@@ -215,22 +215,22 @@ The :mod:`bdb` module also defines two classes:
215215
216216 .. method :: is_skipped_line(module_name)
217217
218- Return True if *module_name * matches any skip pattern.
218+ Return `` True `` if *module_name * matches any skip pattern.
219219
220220 .. method :: stop_here(frame)
221221
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.
223223
224224 .. method :: break_here(frame)
225225
226- Return True if there is an effective breakpoint for this line.
226+ Return `` True `` if there is an effective breakpoint for this line.
227227
228228 Check whether a line or function breakpoint exists and is in effect. Delete temporary
229229 breakpoints based on information from :func: `effective `.
230230
231231 .. method :: break_anywhere(frame)
232232
233- Return True if any breakpoint exists for *frame *'s filename.
233+ Return `` True `` if any breakpoint exists for *frame *'s filename.
234234
235235 Derived classes should override these methods to gain control over debugger
236236 operation.
@@ -348,7 +348,7 @@ The :mod:`bdb` module also defines two classes:
348348
349349 .. method :: get_break(filename, lineno)
350350
351- Return True if there is a breakpoint for *lineno * in *filename *.
351+ Return `` True `` if there is a breakpoint for *lineno * in *filename *.
352352
353353 .. method :: get_breaks(filename, lineno)
354354
@@ -412,7 +412,7 @@ Finally, the module defines the following functions:
412412
413413.. function :: checkfuncname(b, frame)
414414
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
416416 :class: `Breakpoint ` *b * was set.
417417
418418 If it was set via line number, it checks if
@@ -431,14 +431,14 @@ Finally, the module defines the following functions:
431431 :attr: `bplist <bdb.Breakpoint.bplist> ` for the
432432 (:attr: `file <bdb.Breakpoint.file> `, :attr: `line <bdb.Breakpoint.line> `)
433433 (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
435435 :attr: `condition <bdb.Breakpoint.cond> ` nor positive
436436 :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
438438 :attr: `cond <bdb.Breakpoint.cond> ` cannot be evaluated (in which case,
439439 :attr: `ignore <bdb.Breakpoint.ignore> ` count is ignored).
440440
441- If no such entry exists, then (None, None) is returned.
441+ If no such entry exists, then `` (None, None) `` is returned.
442442
443443
444444.. function :: set_trace()
0 commit comments