(self)
| 317 | |
| 318 | class install_symlinked(install): |
| 319 | def run(self): |
| 320 | if sys.platform == 'win32': |
| 321 | raise Exception("This doesn't work on Windows.") |
| 322 | |
| 323 | # Run all sub-commands (at least those that need to be run) |
| 324 | for cmd_name in self.get_sub_commands(): |
| 325 | self.run_command(cmd_name) |
| 326 | |
| 327 | # 'sub_commands': a list of commands this command might have to run to |
| 328 | # get its work done. See cmd.py for more info. |
nothing calls this directly
no outgoing calls
no test coverage detected