Return True if the Tarinfo object is a regular file.
(self)
| 1679 | return self.type in REGULAR_TYPES |
| 1680 | |
| 1681 | def isfile(self): |
| 1682 | 'Return True if the Tarinfo object is a regular file.' |
| 1683 | return self.isreg() |
| 1684 | |
| 1685 | def isdir(self): |
| 1686 | 'Return True if it is a directory.' |