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

  • Committer: Andrew Bennetts
  • Date: 2008-05-07 22:47:56 UTC
  • mfrom: (3412 +trunk)
  • mto: This revision was merged to the branch mainline in revision 3414.
  • Revision ID: andrew.bennetts@canonical.com-20080507224756-upxgmud0bdo4ysuf
Merge from bzr.dev.

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