~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/revision.py

  • Committer: Aaron Bentley
  • Date: 2005-09-20 14:30:35 UTC
  • mto: (1185.1.37)
  • mto: This revision was merged to the branch mainline in revision 1390.
  • Revision ID: abentley@panoramicfeedback.com-20050920143035-01f15084129c2fb3
Ensured combined_graph is order-insensitive

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