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

  • Committer: Alexander Belchenko
  • Date: 2007-03-13 02:16:17 UTC
  • mfrom: (2346 +trunk)
  • mto: This revision was merged to the branch mainline in revision 2356.
  • Revision ID: bialix@ukr.net-20070313021617-azd5lv30b23gyu48
merge bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
265
265
    return delta
266
266
 
267
267
 
268
 
class ChangeReporter(object):
 
268
class _ChangeReporter(object):
269
269
    """Report changes between two trees"""
270
270
 
271
271
    def __init__(self, output=None, suppress_root_add=True,
379
379
    Unfortunately, some tree-changing operations are very complex
380
380
    :change_iterator: an iterator or sequence of changes in the format
381
381
        generated by Tree._iter_changes
382
 
    :param reporter: The ChangeReporter that will report the changes.
 
382
    :param reporter: The _ChangeReporter that will report the changes.
383
383
    """
384
384
    versioned_change_map = {
385
385
        (True, True)  : 'unchanged',