File has a source file extension.
(self)
| 1850 | return "/".join(self.Split()[0:2]) |
| 1851 | |
| 1852 | def IsSource(self): |
| 1853 | """File has a source file extension.""" |
| 1854 | return _IsSourceExtension(self.Extension()[1:]) |
| 1855 | |
| 1856 | |
| 1857 | def _ShouldPrintError(category, confidence, filename, linenum): |
nothing calls this directly
no test coverage detected