MCPcopy Index your code
hub / github.com/python/cpython / set_ignore

Method set_ignore

Lib/test/test_bdb.py:132–135  ·  view source on GitHub ↗

Increment the ignore count of Breakpoint number 'bpnum'.

(self, bpnum)

Source from the content-addressed store, hash-verified

130 return self.stack, self.index
131
132 def set_ignore(self, bpnum):
133 """Increment the ignore count of Breakpoint number 'bpnum'."""
134 bp = self.get_bpbynumber(bpnum)
135 bp.ignore += 1
136
137 def set_enable(self, bpnum):
138 bp = self.get_bpbynumber(bpnum)

Callers

nothing calls this directly

Calls 1

get_bpbynumberMethod · 0.95

Tested by

no test coverage detected