(self, e)
| 3214 | |
| 3215 | @cpython_only |
| 3216 | def get_report(self, e): |
| 3217 | from _testcapi import exception_print |
| 3218 | e = self.get_exception(e) |
| 3219 | with captured_output("stderr") as s: |
| 3220 | exception_print(e) |
| 3221 | return s.getvalue() |
| 3222 | |
| 3223 | |
| 3224 | class LimitTests(unittest.TestCase): |
no test coverage detected