(self)
| 308 | |
| 309 | class unsymlink(install): |
| 310 | def run(self): |
| 311 | dest = os.path.join(self.install_lib, 'IPython') |
| 312 | if os.path.islink(dest): |
| 313 | print('removing symlink at %s' % dest) |
| 314 | os.unlink(dest) |
| 315 | else: |
| 316 | print('No symlink exists at %s' % dest) |
| 317 | |
| 318 | class install_symlinked(install): |
| 319 | def run(self): |
no outgoing calls
no test coverage detected