Return True if it is a hard link.
(self)
| 1590 | return self.type == SYMTYPE |
| 1591 | |
| 1592 | def islnk(self): |
| 1593 | 'Return True if it is a hard link.' |
| 1594 | return self.type == LNKTYPE |
| 1595 | |
| 1596 | def ischr(self): |
| 1597 | 'Return True if it is a character device.' |
no outgoing calls
no test coverage detected