Class representing a hook associated with an action.
A hook associated with an action is a shell command to be executed
either before or after a named action is executed.
|
|
|
|
|
|
|
|
|
__eq__(self,
other)
Equals operator, implemented in terms of original Python 2 compare
operator. |
source code
|
|
|
__lt__(self,
other)
Less-than operator, implemented in terms of original Python 2 compare
operator. |
source code
|
|
|
__gt__(self,
other)
Greater-than operator, implemented in terms of original Python 2
compare operator. |
source code
|
|
|
|
|
_getAction(self)
Property target used to get the action name. |
source code
|
|
|
|
|
_getCommand(self)
Property target used to get the command. |
source code
|
|
|
_getBefore(self)
Property target used to get the before flag. |
source code
|
|
|
_getAfter(self)
Property target used to get the after flag. |
source code
|
|
|
|
|
|
Inherited from object :
__delattr__ ,
__format__ ,
__getattribute__ ,
__hash__ ,
__new__ ,
__reduce__ ,
__reduce_ex__ ,
__setattr__ ,
__sizeof__ ,
__subclasshook__
|