(self, *args)
| 1097 | return stdout.buffer.read() |
| 1098 | |
| 1099 | def run_cmd_ok(self, *args): |
| 1100 | return assert_python_ok('-m', 'calendar', *args)[1] |
| 1101 | |
| 1102 | def assertCLIFails(self, *args): |
| 1103 | with self.captured_stderr_with_buffer() as stderr: |
no test coverage detected