(self, item)
| 1068 | self.counts = dict.fromkeys(('get', 'set', 'del'), 0) |
| 1069 | |
| 1070 | def __getitem__(self, item): |
| 1071 | self.counts['get'] += 1 |
| 1072 | value = super().__getitem__(item) |
| 1073 | self.move_to_end(item) |
| 1074 | return value |
| 1075 | |
| 1076 | def __setitem__(self, key, value): |
| 1077 | self.counts['set'] += 1 |
nothing calls this directly
no test coverage detected