Return True if the Tarinfo object is a regular file.
(self)
| 1656 | return blocks * BLOCKSIZE |
| 1657 | |
| 1658 | def isreg(self): |
| 1659 | 'Return True if the Tarinfo object is a regular file.' |
| 1660 | return self.type in REGULAR_TYPES |
| 1661 | |
| 1662 | def isfile(self): |
| 1663 | 'Return True if the Tarinfo object is a regular file.' |
no outgoing calls