Mark the potential collision (merge) candidates from other files. Args: candidates (list): list of src context candidates
(self, candidates)
| 514 | self.hash = digest |
| 515 | |
| 516 | def markCollisionCandidates(self, candidates): |
| 517 | """Mark the potential collision (merge) candidates from other files. |
| 518 | |
| 519 | Args: |
| 520 | candidates (list): list of src context candidates |
| 521 | """ |
| 522 | self.collision_candidates = [] + candidates |
| 523 | # no need to count me in |
| 524 | self.collision_candidates.remove(self) |
| 525 | |
| 526 | def addFollower(self, bin_ctx): |
| 527 | """Add a binary follower to our source context. He thinks we are a potential (hint) match. |
no test coverage detected