(self)
| 1348 | dispatch[BINSTRING[0]] = load_binstring |
| 1349 | |
| 1350 | def load_binbytes(self): |
| 1351 | len, = unpack('<I', self.read(4)) |
| 1352 | if len > maxsize: |
| 1353 | raise UnpicklingError("BINBYTES exceeds system's maximum size " |
| 1354 | "of %d bytes" % maxsize) |
| 1355 | self.append(self.read(len)) |
| 1356 | dispatch[BINBYTES[0]] = load_binbytes |
| 1357 | |
| 1358 | def load_unicode(self): |
nothing calls this directly
no test coverage detected