(filename)
| 419 | |
| 420 | |
| 421 | def make_executable(filename): |
| 422 | mode_0755 = (stat.S_IRWXU | stat.S_IXGRP | |
| 423 | stat.S_IRGRP | stat.S_IROTH | stat.S_IXOTH) |
| 424 | os.chmod(filename, mode_0755) |
| 425 | |
| 426 | |
| 427 | # noinspection PyArgumentList |
no outgoing calls
no test coverage detected