(self, code)
| 781 | f.write(squish_text(content)) |
| 782 | |
| 783 | def new_module(self, code): |
| 784 | mod_name, mod_fn = self.get_module() |
| 785 | with open(mod_fn, "w", encoding="utf-8") as f: |
| 786 | f.write(squish_text(code)) |
| 787 | self.created_temp_modules.add(mod_name) |
| 788 | return mod_name, mod_fn |
| 789 | |
| 790 | |
| 791 | class AutoreloadHookSuite(ShellFixture): |
no test coverage detected