Returns True if the given git mode represents an executable file, otherwise False.
(mode)
| 775 | |
| 776 | |
| 777 | def isModeExec(mode): |
| 778 | """Returns True if the given git mode represents an executable file, |
| 779 | otherwise False. |
| 780 | """ |
| 781 | return mode[-3:] == "755" |
| 782 | |
| 783 | |
| 784 | class P4Exception(Exception): |
no outgoing calls
no test coverage detected