File has a source file extension.
(self)
| 1663 | return '/'.join(self.Split()[0:2]) |
| 1664 | |
| 1665 | def IsSource(self): |
| 1666 | """File has a source file extension.""" |
| 1667 | return _IsSourceExtension(self.Extension()[1:]) |
| 1668 | |
| 1669 | |
| 1670 | def _ShouldPrintError(category, confidence, linenum): |
nothing calls this directly
no test coverage detected