Return True if the Tarinfo object is a regular file.
(self)
| 1675 | return blocks * BLOCKSIZE |
| 1676 | |
| 1677 | def isreg(self): |
| 1678 | 'Return True if the Tarinfo object is a regular file.' |
| 1679 | return self.type in REGULAR_TYPES |
| 1680 | |
| 1681 | def isfile(self): |
| 1682 | 'Return True if the Tarinfo object is a regular file.' |
no outgoing calls