File base name - text after the final slash, before the final period.
(self)
| 1174 | return (project,) + os.path.splitext(rest) |
| 1175 | |
| 1176 | def BaseName(self): |
| 1177 | """File base name - text after the final slash, before the final period.""" |
| 1178 | return self.Split()[1] |
| 1179 | |
| 1180 | def Extension(self): |
| 1181 | """File extension - text following the final period.""" |
no test coverage detected