(self, /, *args, notifier=None, **kwds)
| 155 | instantiating the cache. |
| 156 | """ |
| 157 | def __init__(self, /, *args, notifier=None, **kwds): |
| 158 | self.notifier = notifier |
| 159 | super().__init__(*args, **kwds) |
| 160 | |
| 161 | def __delitem__(self, item): |
| 162 | super().__delitem__(item) |