(self)
| 242 | |
| 243 | @property |
| 244 | def __dict__(self): |
| 245 | child = getattr(serving, self.__attrname__) |
| 246 | d = child.__class__.__dict__.copy() |
| 247 | d.update(child.__dict__) |
| 248 | return d |
| 249 | |
| 250 | def __getitem__(self, key): |
| 251 | child = getattr(serving, self.__attrname__) |