Home | History | Annotate | Download | only in axl

Lines Matching full:__init__

28 3) If S.__init__(.) requires parameters, include them in the
71 raise SingletonException, 'If no supplied args, singleton must already be instantiated, or __init__ must require no args'
74 raise SingletonException, 'If the singleton requires __init__ args, supply them on first instantiation'
76 instance.__init__(*lstArgs)
86 return cls.__init__.im_func.func_code.co_argcount - 1
119 def __init__(self):
120 super(A, self).__init__()
134 def __init__(self, arg1, arg2):
135 super(B, self).__init__()
150 def __init__(self, arg1, arg2):
151 super(B, self).__init__()
160 getInstance, as long as they call Singleton.__init__ during construction.
162 If this check is not required, you don't need to call Singleton.__init__().
166 def __init__(self):
167 super(A, self).__init__()
175 def __init__(self):
176 super(A, self).__init__()
187 def __init__(self, arg1, arg2):
188 super(B, self).__init__()
197 def __init__(self):
198 super(A, self).__init__()
200 def __init__(self):
201 super(B, self).__init__()