Make a copy it itself.
(self, line)
| 91 | return self.isInternal() is other.isInternal() |
| 92 | |
| 93 | def _clone(self, line): |
| 94 | """Make a copy it itself.""" |
| 95 | return self.fromFilenameAndLine(filename=self.filename, line=line) |
| 96 | |
| 97 | def atInternal(self): |
| 98 | """Make a copy it itself but mark as internal code. |
no test coverage detected