File base name - text after the final slash, before the final period.
(self)
| 942 | return (project,) + os.path.splitext(rest) |
| 943 | |
| 944 | def BaseName(self): |
| 945 | """File base name - text after the final slash, before the final period.""" |
| 946 | return self.Split()[1] |
| 947 | |
| 948 | def Extension(self): |
| 949 | """File extension - text following the final period.""" |
no test coverage detected