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

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2011-02-20 02:02:49 UTC
  • mfrom: (5670.1.1 deprecated-before-2.0)
  • Revision ID: pqm@pqm.ubuntu.com-20110220020249-6gfgbgp9d03unw0e
(jelmer) Remove any methods/arguments that were deprecated before 2.0.
 (Jelmer Vernooij)

Show diffs side-by-side

added added

removed removed

Lines of Context:
64
64
        ancestry = self.ancestry
65
65
        return dict((k, ancestry[k]) for k in keys if k in ancestry)
66
66
 
67
 
@deprecated_function(deprecated_in((1, 16, 0)))
68
 
def _StackedParentsProvider(*args, **kwargs):
69
 
    return StackedParentsProvider(*args, **kwargs)
70
67
 
71
68
class StackedParentsProvider(object):
72
69
    """A parents provider which stacks (or unions) multiple providers.