Return True if it is a block device.
(self)
| 1598 | return self.type == CHRTYPE |
| 1599 | |
| 1600 | def isblk(self): |
| 1601 | 'Return True if it is a block device.' |
| 1602 | return self.type == BLKTYPE |
| 1603 | |
| 1604 | def isfifo(self): |
| 1605 | 'Return True if it is a FIFO.' |
no outgoing calls
no test coverage detected