equal
deleted
inserted
replaced
454 # (new != nullrev has been excluded by the previous check) |
454 # (new != nullrev has been excluded by the previous check) |
455 return True |
455 return True |
456 elif repo.obsstore: |
456 elif repo.obsstore: |
457 return new.node() in obsolete.foreground(repo, [old.node()]) |
457 return new.node() in obsolete.foreground(repo, [old.node()]) |
458 else: |
458 else: |
459 # still an independent clause as it is lazyer (and therefore faster) |
459 # still an independent clause as it is lazier (and therefore faster) |
460 return old.descendant(new) |
460 return old.descendant(new) |