(file_path)
| 105 | |
| 106 | |
| 107 | def make_executable(file_path): |
| 108 | st = os.stat(file_path) |
| 109 | os.chmod(file_path, st.st_mode | stat.S_IXUSR | stat.S_IXGRP | stat.S_IXOTH) |
| 110 | |
| 111 | |
| 112 | def is_executable(file_path): |
nothing calls this directly
no outgoing calls
no test coverage detected