File extension - text following the final period, includes that period.
(self)
| 1797 | return self.Split()[1] |
| 1798 | |
| 1799 | def Extension(self): |
| 1800 | """File extension - text following the final period, includes that period.""" |
| 1801 | return self.Split()[2] |
| 1802 | |
| 1803 | def NoExtension(self): |
| 1804 | """File has no source file extension.""" |
no test coverage detected