(self, content)
| 2543 | return textwrap.dedent(string).strip() |
| 2544 | |
| 2545 | def set_source(self, content): |
| 2546 | with open(self.filename, 'w') as fp: |
| 2547 | fp.write(self.text_normalize(content)) |
| 2548 | |
| 2549 | def invoke_dis(self, *flags): |
| 2550 | output = io.StringIO() |
no test coverage detected