Public Member Functions | |
def | __and__ (self, other) |
def | __init__ (self, lhs, rhs) |
def | isChosen (self) |
def | makeProcessModifier (self, func) |
def | toModify (self, obj, func=None, kw) |
Private Attributes | |
__lhs | |
__rhs | |
A modifier which only applies if multiple Modifiers are chosen
def Config._AndModifier.__and__ | ( | self, | |
other | |||
) |
Definition at line 1293 of file Config.py.
def Config._AndModifier.isChosen | ( | self | ) |
Definition at line 1282 of file Config.py.
Referenced by Config._AndModifier.toModify(), Config.Modifier.toModify(), and Config.Modifier.toReplaceWith().
def Config._AndModifier.makeProcessModifier | ( | self, | |
func | |||
) |
This is used to create a ProcessModifer that can perform actions on the process as a whole. This takes as argument a callable object (e.g. function) that takes as its sole argument an instance of Process. In order to work, the value returned from this function must be assigned to a uniquely named variable.
Definition at line 1288 of file Config.py.