~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/hooks.py

  • Committer: Parth Malwankar
  • Date: 2010-07-14 08:53:58 UTC
  • mto: (5050.3.7 2.2)
  • mto: This revision was merged to the branch mainline in revision 5365.
  • Revision ID: parth.malwankar@gmail.com-20100714085358-6un4ny0cn908spkq
better error message for RecursiveBind

Show diffs side-by-side

added added

removed removed

Lines of Context:
54
54
    'bzrlib.smart.client', 'SmartClientHooks')
55
55
known_hooks.register_lazy(('bzrlib.smart.server', 'SmartTCPServer.hooks'),
56
56
    'bzrlib.smart.server', 'SmartServerHooks')
57
 
known_hooks.register_lazy(('bzrlib.status', 'hooks'),
58
 
    'bzrlib.status', 'StatusHooks')
59
57
known_hooks.register_lazy(
60
58
    ('bzrlib.version_info_formats.format_rio', 'RioVersionInfoBuilder.hooks'),
61
59
    'bzrlib.version_info_formats.format_rio', 'RioVersionInfoBuilderHooks')
181
179
    """A single hook that clients can register to be called back when it fires.
182
180
 
183
181
    :ivar name: The name of the hook.
184
 
    :ivar doc: The docs for using the hook.
185
182
    :ivar introduced: A version tuple specifying what version the hook was
186
183
        introduced in. None indicates an unknown version.
187
184
    :ivar deprecated: A version tuple specifying what version the hook was
188
185
        deprecated or superseded in. None indicates that the hook is not
189
186
        superseded or deprecated. If the hook is superseded then the doc
190
187
        should describe the recommended replacement hook to register for.
 
188
    :ivar doc: The docs for using the hook.
191
189
    """
192
190
 
193
191
    def __init__(self, name, doc, introduced, deprecated):