def __init__(self, outer, **kwargs):
     self.outer = outer
     Applier.__init__(self, **kwargs)
Beispiel #2
0
 def __init__(self, **kwargs):
     # do not initialise element, here, to None, whatever you do.
     # there are circumstances where UIObject.__init__ is the last
     # thing that is done in derived classes, where self.setElement
     # will _already_ have been called.
     Applier.__init__(self, **kwargs)
Beispiel #3
0
 def __init__(self, **kwargs):
     # do not initialise element, here, to None, whatever you do.
     # there are circumstances where UIObject.__init__ is the last
     # thing that is done in derived classes, where self.setElement
     # will _already_ have been called.
     Applier.__init__(self, **kwargs)
 def __init__(self, outer, **kwargs):
     self.outer = outer
     Applier.__init__(self, **kwargs)