/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/bzrdir.py

(Gary van der Merwe) Add bzrlib.graph.StackedParentsProvider as a
        public API, deprecating the old name of '_StackedParentsProvider'.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2768
2768
        del ie.text_id
2769
2769
 
2770
2770
    def get_parent_map(self, revision_ids):
2771
 
        """See graph._StackedParentsProvider.get_parent_map"""
 
2771
        """See graph.StackedParentsProvider.get_parent_map"""
2772
2772
        return dict((revision_id, self.revisions[revision_id])
2773
2773
                    for revision_id in revision_ids
2774
2774
                     if revision_id in self.revisions)