(self)
| 1241 | dispatch[FRAME[0]] = load_frame |
| 1242 | |
| 1243 | def load_persid(self): |
| 1244 | try: |
| 1245 | pid = self.readline()[:-1].decode("ascii") |
| 1246 | except UnicodeDecodeError: |
| 1247 | raise UnpicklingError( |
| 1248 | "persistent IDs in protocol 0 must be ASCII strings") |
| 1249 | self.append(self.persistent_load(pid)) |
| 1250 | dispatch[PERSID[0]] = load_persid |
| 1251 | |
| 1252 | def load_binpersid(self): |
nothing calls this directly
no test coverage detected