(self)
| 1380 | dispatch[FRAME[0]] = load_frame |
| 1381 | |
| 1382 | def load_persid(self): |
| 1383 | try: |
| 1384 | pid = self.readline()[:-1].decode("ascii") |
| 1385 | except UnicodeDecodeError: |
| 1386 | raise UnpicklingError( |
| 1387 | "persistent IDs in protocol 0 must be ASCII strings") |
| 1388 | self.append(self.persistent_load(pid)) |
| 1389 | dispatch[PERSID[0]] = load_persid |
| 1390 | |
| 1391 | def load_binpersid(self): |
nothing calls this directly
no test coverage detected