(self)
| 1487 | dispatch[BINSTRING[0]] = load_binstring |
| 1488 | |
| 1489 | def load_binbytes(self): |
| 1490 | len, = unpack('<I', self.read(4)) |
| 1491 | if len > maxsize: |
| 1492 | raise UnpicklingError("BINBYTES exceeds system's maximum size " |
| 1493 | "of %d bytes" % maxsize) |
| 1494 | self.append(self.read(len)) |
| 1495 | dispatch[BINBYTES[0]] = load_binbytes |
| 1496 | |
| 1497 | def load_unicode(self): |
nothing calls this directly
no test coverage detected