(self)
| 755 | tracer.runcall(tfunc_import) |
| 756 | |
| 757 | def test_skip_with_no_name_module(self): |
| 758 | # some frames have `globals` with no `__name__` |
| 759 | # for instance the second frame in this traceback |
| 760 | # exec(compile('raise ValueError()', '', 'exec'), {}) |
| 761 | bdb = Bdb(skip=['anything*']) |
| 762 | self.assertIs(bdb.is_skipped_module(None), False) |
| 763 | |
| 764 | def test_down(self): |
| 765 | # Check that set_down() raises BdbError at the newest frame. |
nothing calls this directly
no test coverage detected