File base name - text after the final slash, before the final period.
(self)
| 1651 | return (project,) + os.path.splitext(rest) |
| 1652 | |
| 1653 | def BaseName(self): |
| 1654 | """File base name - text after the final slash, before the final period.""" |
| 1655 | return self.Split()[1] |
| 1656 | |
| 1657 | def Extension(self): |
| 1658 | """File extension - text following the final period, includes that period.""" |
no test coverage detected