MCPcopy Index your code
hub / github.com/RustPython/RustPython / is_skipped_module

Method is_skipped_module

Lib/bdb.py:431–438  ·  view source on GitHub ↗

Return True if module_name matches any skip pattern.

(self, module_name)

Source from the content-addressed store, hash-verified

429 # definition of stopping and breakpoints.
430
431 def is_skipped_module(self, module_name):
432 "Return True if module_name matches any skip pattern."
433 if module_name is None: # some modules do not have names
434 return False
435 for pattern in self.skip:
436 if fnmatch.fnmatch(module_name, pattern):
437 return True
438 return False
439
440 def stop_here(self, frame):
441 "Return True if frame is below the starting frame in the stack."

Callers 2

stop_hereMethod · 0.95

Calls

no outgoing calls

Tested by 1