(self, *args, **kwargs)
| 51 | return reversed(self.dicts) |
| 52 | |
| 53 | def push(self, *args, **kwargs): |
| 54 | dicts = [] |
| 55 | for d in args: |
| 56 | if isinstance(d, BaseContext): |
| 57 | dicts += d.dicts[1:] |
| 58 | else: |
| 59 | dicts.append(d) |
| 60 | return ContextDict(self, *dicts, **kwargs) |
| 61 | |
| 62 | def pop(self): |
| 63 | if len(self.dicts) == 1: |