Return True if it is a block device.
(self)
| 1699 | return self.type == CHRTYPE |
| 1700 | |
| 1701 | def isblk(self): |
| 1702 | 'Return True if it is a block device.' |
| 1703 | return self.type == BLKTYPE |
| 1704 | |
| 1705 | def isfifo(self): |
| 1706 | 'Return True if it is a FIFO.' |
no outgoing calls
no test coverage detected