(self)
| 66 | return SortedDictIterator(self, self.keys()) |
| 67 | |
| 68 | def __reversed__(self): |
| 69 | return SortedDictIterator(self, self.keys(), reverse=True) |
| 70 | |
| 71 | def __getitem__(self, index): |
| 72 | """Override to support the "get_slice" for python3 """ |
nothing calls this directly
no test coverage detected