(self)
| 1754 | dispatch[DUP[0]] = load_dup |
| 1755 | |
| 1756 | def load_get(self): |
| 1757 | i = int(self.readline()[:-1]) |
| 1758 | try: |
| 1759 | self.append(self.memo[i]) |
| 1760 | except KeyError: |
| 1761 | msg = f'Memo value not found at index {i}' |
| 1762 | raise UnpicklingError(msg) from None |
| 1763 | dispatch[GET[0]] = load_get |
| 1764 | |
| 1765 | def load_binget(self): |
nothing calls this directly
no test coverage detected