comparison mercurial/phases.py @ 51700:7f0cb9ee0534

Backout accidental publication of a large range of revisions I accidentally published 25e7f9dcad0f::bd1483fd7088, this is the inverse.
author Raphaël Gomès <rgomes@octobus.net>
date Tue, 23 Jul 2024 10:02:46 +0200
parents 493034cc3265
children ca7bde5dbafb
comparison
equal deleted inserted replaced
51699:bd1483fd7088 51700:7f0cb9ee0534
891 end = len(cl) 891 end = len(cl)
892 rev_phases = [None] * (end - start) 892 rev_phases = [None] * (end - start)
893 893
894 this_phase_set = self._phasesets[targetphase] 894 this_phase_set = self._phasesets[targetphase]
895 for r in range(start, end): 895 for r in range(start, end):
896
896 # gather information about the current_rev 897 # gather information about the current_rev
897 r_phase = phase(repo, r) 898 r_phase = phase(repo, r)
898 p_phase = None # phase inherited from parents 899 p_phase = None # phase inherited from parents
899 p1, p2 = parents(r) 900 p1, p2 = parents(r)
900 if p1 >= start: 901 if p1 >= start: