(self)
| 538 | @unittest.skipIf(sys.platform == "win32", |
| 539 | "subprocess doesn't support pass_fds on Windows") |
| 540 | def test_dump_traceback_fd(self): |
| 541 | with tempfile.TemporaryFile('wb+') as fp: |
| 542 | self.check_dump_traceback(fd=fp.fileno()) |
| 543 | |
| 544 | def test_truncate(self): |
| 545 | maxlen = 500 |
nothing calls this directly
no test coverage detected