(name)
| 28 | |
| 29 | if _system == 'Windows': |
| 30 | def platform_exe(name): |
| 31 | if name.endswith('.exe'): |
| 32 | return name |
| 33 | return name + '.exe' |
| 34 | else: |
| 35 | def platform_exe(name): |
| 36 | return name |
no outgoing calls
no test coverage detected
searching dependent graphs…