Return True if the Tarinfo object is a regular file.
(self)
| 1574 | return blocks * BLOCKSIZE |
| 1575 | |
| 1576 | def isreg(self): |
| 1577 | 'Return True if the Tarinfo object is a regular file.' |
| 1578 | return self.type in REGULAR_TYPES |
| 1579 | |
| 1580 | def isfile(self): |
| 1581 | 'Return True if the Tarinfo object is a regular file.' |
no outgoing calls
no test coverage detected