179
181
"""A single hook that clients can register to be called back when it fires.
181
183
:ivar name: The name of the hook.
182
185
:ivar introduced: A version tuple specifying what version the hook was
183
186
introduced in. None indicates an unknown version.
184
187
:ivar deprecated: A version tuple specifying what version the hook was
185
188
deprecated or superseded in. None indicates that the hook is not
186
189
superseded or deprecated. If the hook is superseded then the doc
187
190
should describe the recommended replacement hook to register for.
191
193
def __init__(self, name, doc, introduced, deprecated):