File base name - text after the final slash, before the final period.
(self)
| 1838 | return (project,) + os.path.splitext(rest) |
| 1839 | |
| 1840 | def BaseName(self): |
| 1841 | """File base name - text after the final slash, before the final period.""" |
| 1842 | return self.Split()[1] |
| 1843 | |
| 1844 | def Extension(self): |
| 1845 | """File extension - text following the final period, includes that period.""" |
no test coverage detected