(self, *args)
| 963 | sys.stderr = orig_stderr |
| 964 | |
| 965 | def run_cli_ok(self, *args): |
| 966 | with self.captured_stdout_with_buffer() as stdout: |
| 967 | calendar.main(args) |
| 968 | return stdout.buffer.read() |
| 969 | |
| 970 | def run_cmd_ok(self, *args): |
| 971 | return assert_python_ok('-m', 'calendar', *args)[1] |
nothing calls this directly
no test coverage detected