(self, pathname)
| 157 | self.msg(*args) |
| 158 | |
| 159 | def run_script(self, pathname): |
| 160 | self.msg(2, "run_script", pathname) |
| 161 | with io.open_code(pathname) as fp: |
| 162 | stuff = ("", "rb", _PY_SOURCE) |
| 163 | self.load_module('__main__', fp, pathname, stuff) |
| 164 | |
| 165 | def load_file(self, pathname): |
| 166 | dir, name = os.path.split(pathname) |
no test coverage detected