~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/revision.py

bugfix from Aaron Bentley - bzrlib.graph.max_distance had an off-by-1 error

Show diffs side-by-side

added added

removed removed

Lines of Context:
253
253
        ancestors[node].update(node_anc)
254
254
    for node, node_dec in descendants_b.iteritems():
255
255
        if node not in descendants:
256
 
            descendants[node] = set()
 
256
            descendants[node] = {}
257
257
        descendants[node].update(node_dec)
258
258
    return root, ancestors, descendants, common
259
259