Return True if the Tarinfo object is a regular file.
(self)
| 1660 | return self.type in REGULAR_TYPES |
| 1661 | |
| 1662 | def isfile(self): |
| 1663 | 'Return True if the Tarinfo object is a regular file.' |
| 1664 | return self.isreg() |
| 1665 | |
| 1666 | def isdir(self): |
| 1667 | 'Return True if it is a directory.' |