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