Return True if it is a block device.
(self)
| 1680 | return self.type == CHRTYPE |
| 1681 | |
| 1682 | def isblk(self): |
| 1683 | 'Return True if it is a block device.' |
| 1684 | return self.type == BLKTYPE |
| 1685 | |
| 1686 | def isfifo(self): |
| 1687 | 'Return True if it is a FIFO.' |
no outgoing calls
no test coverage detected