Lines Matching refs:__dict__
252 if klass.__dict__.get('__call__') is not None:
403 self.__dict__[_the_name] = value
485 __dict__ = self.__dict__
486 __dict__['_mock_parent'] = parent
487 __dict__['_mock_name'] = name
488 __dict__['_mock_new_name'] = _new_name
489 __dict__['_mock_new_parent'] = _new_parent
497 __dict__['_mock_children'] = {}
498 __dict__['_mock_wraps'] = wraps
499 __dict__['_mock_delegate'] = None
501 __dict__['_mock_called'] = False
502 __dict__['_mock_call_args'] = None
503 __dict__['_mock_call_count'] = 0
504 __dict__['_mock_call_args_list'] = _CallList()
505 __dict__['_mock_mock_calls'] = _CallList()
507 __dict__['method_calls'] = _CallList()
551 __dict__ = self.__dict__
552 __dict__['_spec_class'] = _spec_class
553 __dict__['_spec_set'] = spec_set
554 __dict__['_mock_methods'] = spec
744 from_dict = list(self.__dict__)
760 name not in self.__dict__):
789 if name in _all_magics and name in type(self).__dict__:
791 if name not in self.__dict__:
796 if name in self.__dict__:
936 self.__dict__['_mock_return_value'] = return_value
1234 original = target.__dict__[name]
1864 if entry in type(self).__dict__:
1869 these_magics = these_magics - set(type(self).__dict__)
2264 result = klass.__dict__.get(entry, DEFAULT)