(self)
| 170 | self.mktmp(content) |
| 171 | |
| 172 | def run_tmpfile(self): |
| 173 | _ip = get_ipython() |
| 174 | # This fails on Windows if self.tmpfile.name has spaces or "~" in it. |
| 175 | # See below and ticket https://bugs.launchpad.net/bugs/366353 |
| 176 | _ip.magic('run %s' % self.fname) |
| 177 | |
| 178 | def run_tmpfile_p(self): |
| 179 | _ip = get_ipython() |
no test coverage detected