src/mercurialserver/changes.py
author Cédric Krier <ced@b2ck.com>
Fri, 20 Jul 2018 17:17:49 +0200
changeset 376 d503d5a786f3
parent 242 03d8f07230b3
permissions -rw-r--r--
Remove usage of changectx The method has been removed in changeset 836867586b83 of Mercurial.

"""
Find all the changes in a node in a way portable across Mercurial versions
"""

def changes(repo, node):
    start = repo[node].rev()
    try:
        end = len(repo.changelog)
    except:
        end = repo.changelog.count()
    for rev in xrange(start, end):
        yield repo[rev]