/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/knit.py

  • Committer: John Arbash Meinel
  • Date: 2009-08-17 22:08:21 UTC
  • mto: This revision was merged to the branch mainline in revision 4629.
  • Revision ID: john@arbash-meinel.com-20090817220821-wzul2cdupe88xi7t
a few more implementations of the interface.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1192
1192
 
1193
1193
    def get_known_graph_ancestry(self, keys):
1194
1194
        """Get a KnownGraph instance with the ancestry of keys."""
1195
 
        parent_map, missing_keys = self._index.find_ancestry(keys, 0)
 
1195
        parent_map, missing_keys = self._index.find_ancestry(keys)
1196
1196
        kg = _mod_graph.KnownGraph(parent_map)
1197
1197
        return kg
1198
1198