Test for executable file on non POSIX system
(self, file)
| 76 | |
| 77 | |
| 78 | def _isexec_WIN(self, file): |
| 79 | """ |
| 80 | Test for executable file on non POSIX system |
| 81 | """ |
| 82 | return file.is_file() and self.execre.match(file.name) is not None |
| 83 | |
| 84 | def isexec(self, file): |
| 85 | """ |