@@ -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.
@@ -344,7 +344,7 @@ The :mod:`bdb` module also defines two classes:
344344
345345 .. method :: get_break(filename, lineno)
346346
347- Return True if there is a breakpoint for *lineno * in *filename *.
347+ Return `` True `` if there is a breakpoint for *lineno * in *filename *.
348348
349349 .. method :: get_breaks(filename, lineno)
350350
@@ -408,7 +408,7 @@ Finally, the module defines the following functions:
408408
409409.. function :: checkfuncname(b, frame)
410410
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
412412 :class: `Breakpoint ` *b * was set.
413413
414414 If it was set via line number, it checks if
@@ -427,14 +427,14 @@ Finally, the module defines the following functions:
427427 :attr: `bplist <bdb.Breakpoint.bplist> ` for the
428428 (:attr: `file <bdb.Breakpoint.file> `, :attr: `line <bdb.Breakpoint.line> `)
429429 (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
431431 :attr: `condition <bdb.Breakpoint.cond> ` nor positive
432432 :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
434434 :attr: `cond <bdb.Breakpoint.cond> ` cannot be evaluated (in which case,
435435 :attr: `ignore <bdb.Breakpoint.ignore> ` count is ignored).
436436
437- If no such entry exists, then (None, None) is returned.
437+ If no such entry exists, then `` (None, None) `` is returned.
438438
439439
440440.. function :: set_trace()
0 commit comments