File has a source file extension.
(self)
| 1648 | return '/'.join(self.Split()[0:2]) |
| 1649 | |
| 1650 | def IsSource(self): |
| 1651 | """File has a source file extension.""" |
| 1652 | return _IsSourceExtension(self.Extension()[1:]) |
| 1653 | |
| 1654 | |
| 1655 | def _ShouldPrintError(category, confidence, linenum): |
nothing calls this directly
no test coverage detected