Home | History | Annotate | Download | only in src

Lines Matching refs:_dict

51             self._dict = {}
54 if key not in self._dict:
55 self._dict[key] = self.default_factory()
56 return self._dict[key]
58 self._dict[key] = value
60 return key in self._dict
62 return repr(self._dict)
64 return bool(self._dict)