(self)
| 1442 | dispatch[LONG1[0]] = load_long1 |
| 1443 | |
| 1444 | def load_long4(self): |
| 1445 | n, = unpack('<i', self.read(4)) |
| 1446 | if n < 0: |
| 1447 | # Corrupt or hostile pickle -- we never write one like this |
| 1448 | raise UnpicklingError("LONG pickle has negative byte count") |
| 1449 | data = self.read(n) |
| 1450 | self.append(decode_long(data)) |
| 1451 | dispatch[LONG4[0]] = load_long4 |
| 1452 | |
| 1453 | def load_float(self): |
nothing calls this directly
no test coverage detected