(self)
| 1233 | |
| 1234 | class TestRegressions(unittest.TestCase): |
| 1235 | def test_format_stack_entry_no_lineno(self): |
| 1236 | # See gh-101517 |
| 1237 | self.assertIn('Warning: lineno is None', |
| 1238 | Bdb().format_stack_entry((sys._getframe(), None))) |
| 1239 | |
| 1240 | |
| 1241 | if __name__ == "__main__": |
nothing calls this directly
no test coverage detected