(self)
| 532 | self.check_dump_traceback() |
| 533 | |
| 534 | def test_dump_traceback_file(self): |
| 535 | with temporary_filename() as filename: |
| 536 | self.check_dump_traceback(filename=filename) |
| 537 | |
| 538 | @unittest.skipIf(sys.platform == "win32", |
| 539 | "subprocess doesn't support pass_fds on Windows") |
nothing calls this directly
no test coverage detected