/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 breezy/transform.py

  • Committer: Breezy landing bot
  • Author(s): Jelmer Vernooij
  • Date: 2017-06-10 23:16:14 UTC
  • mfrom: (6672.2.7 move-invtree)
  • Revision ID: breezy.the.bot@gmail.com-20170610231614-s86lsfngizrmse0j
Move inventory-related tree implementations to breezy.inventorytree.

Merged from https://code.launchpad.net/~jelmer/brz/move-invtree/+merge/325444

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
from . import (
25
25
    config as _mod_config,
26
26
    errors,
 
27
    inventorytree,
27
28
    lazy_import,
28
29
    registry,
29
30
    trace,
1971
1972
        raise NotImplementedError(self.new_orphan)
1972
1973
 
1973
1974
 
1974
 
class _PreviewTree(tree.InventoryTree):
 
1975
class _PreviewTree(inventorytree.InventoryTree):
1975
1976
    """Partial implementation of Tree to support show_diff_trees"""
1976
1977
 
1977
1978
    def __init__(self, transform):