(self)
| 383 | self._origin = _origin |
| 384 | |
| 385 | def __repr__(self): |
| 386 | return '<Completion start=%s end=%s text=%r type=%r, signature=%r,>' % \ |
| 387 | (self.start, self.end, self.text, self.type or '?', self.signature or '?') |
| 388 | |
| 389 | def __eq__(self, other)->Bool: |
| 390 | """ |
nothing calls this directly
no outgoing calls
no test coverage detected