src/mercurialserver/changes.py
author Paul Crowley <paul@lshift.net>
Fri, 17 Dec 2010 15:08:23 +0000
changeset 263 9f7ad3a71c90
parent 242 03d8f07230b3
child 376 d503d5a786f3
permissions -rw-r--r--
Bump version number to 1.1; big documentation update; correct dates; add to NEWS and CREDITS.

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

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