File base name - text after the final slash, before the final period.
(self)
| 1636 | return (project,) + os.path.splitext(rest) |
| 1637 | |
| 1638 | def BaseName(self): |
| 1639 | """File base name - text after the final slash, before the final period.""" |
| 1640 | return self.Split()[1] |
| 1641 | |
| 1642 | def Extension(self): |
| 1643 | """File extension - text following the final period, includes that period.""" |
no test coverage detected