~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/mutabletree.py

  • Committer: Jelmer Vernooij
  • Date: 2012-01-18 10:42:07 UTC
  • mfrom: (6437.3.6 2.5)
  • mto: (6437.3.7 2.5)
  • mto: This revision was merged to the branch mainline in revision 6441.
  • Revision ID: jelmer@vernstok.nl-20120118104207-yc5fhsaz4mupjcam
Merge 2.5 branch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
524
524
            "Called before a tree transform on this tree. The hook is called "
525
525
            "with the tree that is being transformed and the transform.",
526
526
            (2, 5))
 
527
        self.add_hook('post_build_tree',
 
528
            "Called after a completely new tree is built. The hook is "
 
529
            "called with the tree as its only argument.", (2, 5))
527
530
        self.add_hook('post_transform',
528
531
            "Called after a tree transform has been performed on a tree. "
529
532
            "The hook is called with the tree that is being transformed and "
530
533
            "the transform.",
531
534
            (2, 5))
532
535
 
533
 
 
534
536
# install the default hooks into the MutableTree class.
535
537
MutableTree.hooks = MutableTreeHooks()
536
538