(self)
| 62 | object.__setattr__(self, "_Local__storage", context_var) |
| 63 | |
| 64 | def __iter__(self) -> t.Iterator[tuple[str, t.Any]]: |
| 65 | return iter(self.__storage.get({}).items()) |
| 66 | |
| 67 | def __call__( |
| 68 | self, name: str, *, unbound_message: str | None = None |