(self, e)
| 3137 | |
| 3138 | @cpython_only |
| 3139 | def get_report(self, e): |
| 3140 | from _testcapi import exception_print |
| 3141 | e = self.get_exception(e) |
| 3142 | with captured_output("stderr") as s: |
| 3143 | exception_print(e) |
| 3144 | return s.getvalue() |
| 3145 | |
| 3146 | |
| 3147 | class LimitTests(unittest.TestCase): |
no test coverage detected