(self, *flags)
| 2547 | fp.write(self.text_normalize(content)) |
| 2548 | |
| 2549 | def invoke_dis(self, *flags): |
| 2550 | output = io.StringIO() |
| 2551 | with contextlib.redirect_stdout(output): |
| 2552 | dis.main(args=[*flags, self.filename]) |
| 2553 | return self.text_normalize(output.getvalue()) |
| 2554 | |
| 2555 | def check_output(self, source, expect, *flags): |
| 2556 | with self.subTest(source=source, flags=flags): |
no test coverage detected