MCPcopy Create free account
hub / github.com/RT-Thread/env-windows / is_skipped_module

Method is_skipped_module

tools/python-3.11.9-amd64/Lib/bdb.py:193–200  ·  view source on GitHub ↗

Return True if module_name matches any skip pattern.

(self, module_name)

Source from the content-addressed store, hash-verified

191 # definition of stopping and breakpoints.
192
193 def is_skipped_module(self, module_name):
194 "Return True if module_name matches any skip pattern."
195 if module_name is None: # some modules do not have names
196 return False
197 for pattern in self.skip:
198 if fnmatch.fnmatch(module_name, pattern):
199 return True
200 return False
201
202 def stop_here(self, frame):
203 "Return True if frame is below the starting frame in the stack."

Callers 1

stop_hereMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected