(self, pyfile)
| 1080 | remove_bytecode(pyfile) |
| 1081 | |
| 1082 | def rm_pyfile(self, pyfile): |
| 1083 | os.unlink(pyfile) |
| 1084 | remove_bytecode(pyfile) |
| 1085 | |
| 1086 | def update_module(self, relative_path, contents): |
| 1087 | self.update_pyfile(os.path.join(self.tmp_dir, relative_path), contents) |
no test coverage detected