(self)
| 1723 | dispatch[DUP[0]] = load_dup |
| 1724 | |
| 1725 | def load_get(self): |
| 1726 | i = int(self.readline()[:-1]) |
| 1727 | try: |
| 1728 | self.append(self.memo[i]) |
| 1729 | except KeyError: |
| 1730 | msg = f'Memo value not found at index {i}' |
| 1731 | raise UnpicklingError(msg) from None |
| 1732 | dispatch[GET[0]] = load_get |
| 1733 | |
| 1734 | def load_binget(self): |
nothing calls this directly
no test coverage detected