Return True if module_name matches any skip pattern.
(self, module_name)
| 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." |
no outgoing calls