Lines Matching refs:subst
1143 def _register(self, func, subst=None, needcleanup=1):
1146 be executed. An optional function SUBST can
1148 f = CallWrapper(func, subst, self).__call__
1460 def __init__(self, func, subst, widget):
1461 """Store FUNC, SUBST and WIDGET as members."""
1463 self.subst = subst
1466 """Apply first function SUBST to arguments, than FUNC."""
1468 if self.subst:
1469 args = self.subst(*args)