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

  • Committer: James Westby
  • Date: 2009-04-06 22:31:35 UTC
  • mto: This revision was merged to the branch mainline in revision 4263.
  • Revision ID: james.westby@canonical.com-20090406223135-f7os74eyxlbpxtal
Update the comments based on those in the test.

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
 
33
33
known_hooks = registry.Registry()
34
34
# known_hooks registry contains
35
 
# tuple of module, hook location within that module
 
35
# tuple of (module, member name) which is the hook point
36
36
# module where the specific hooks are defined
37
 
# class for the specific hooks
 
37
# callable to get the empty specific Hooks for that attribute
38
38
known_hooks.register_lazy(('bzrlib.branch', 'Branch.hooks'), 'bzrlib.branch',
39
39
    'BranchHooks')
40
40
known_hooks.register_lazy(('bzrlib.bzrdir', 'BzrDir.hooks'), 'bzrlib.bzrdir',