Lines Matching defs:__init__
1026 def __init__(self, qualname):
1172 def __init__(self):
2540 init = _signature_get_user_defined_method(obj, '__init__')
2543 # pure Python __new__ or __init__ method
2549 # or an own '__init__' method
2550 elif init is not None and '__init__' in base.__dict__:
2559 # defined '__init__', '__new__', or class-level '__call__'
2580 # Last option is to check if its '__init__' is
2581 # object.__init__ or type.__init__.
2584 # __init__ or __new__ for it
2585 if (obj.__init__ is object.__init__ and
2608 # __call__, __new__, or __init__ methods
2686 def __init__(self, name, kind, *, default=_empty, annotation=_empty):
2831 def __init__(self, signature, arguments):
2972 def __init__(self, parameters=None, *, return_annotation=_empty,