~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tree.py

  • Committer: Martin Pool
  • Date: 2008-05-02 07:31:24 UTC
  • mto: (3408.2.1 integration)
  • mto: This revision was merged to the branch mainline in revision 3410.
  • Revision ID: mbp@sourcefrog.net-20080502073124-nxmeqrzkji6u2m76
Remove code deprecated prior to 1.1 and its tests

Show diffs side-by-side

added added

removed removed

Lines of Context:
904
904
            # the parent's path is necessarily known at this point.
905
905
            yield(file_id, (path, to_path), changed_content, versioned, parent,
906
906
                  name, kind, executable)
907
 
 
908
 
 
909
 
# This was deprecated before 0.12, but did not have an official warning
910
 
@symbol_versioning.deprecated_function(symbol_versioning.zero_twelve)
911
 
def RevisionTree(*args, **kwargs):
912
 
    """RevisionTree has moved to bzrlib.revisiontree.RevisionTree()
913
 
 
914
 
    Accessing it as bzrlib.tree.RevisionTree has been deprecated as of
915
 
    bzr 0.12.
916
 
    """
917
 
    from bzrlib.revisiontree import RevisionTree as _RevisionTree
918
 
    return _RevisionTree(*args, **kwargs)
919
 
 
920