File has a source file extension.
(self)
| 1805 | return "/".join(self.Split()[0:2]) |
| 1806 | |
| 1807 | def IsSource(self): |
| 1808 | """File has a source file extension.""" |
| 1809 | return _IsSourceExtension(self.Extension()[1:]) |
| 1810 | |
| 1811 | |
| 1812 | def _ShouldPrintError(category, confidence, filename, linenum): |
nothing calls this directly
no test coverage detected