(subself, pid)
| 325 | def persistent_load(subself, pid): |
| 326 | raise AssertionError('should never be called') |
| 327 | def _persistent_load(subself, pid): |
| 328 | called.append(pid) |
| 329 | with self.assertRaises(self.persistent_load_error): |
| 330 | super().persistent_load(pid) |
| 331 | return pid |
| 332 | |
| 333 | for proto in range(pickle.HIGHEST_PROTOCOL + 1): |
| 334 | unpickler = PersUnpickler(io.BytesIO(self.dumps('abc', proto))) |
nothing calls this directly
no test coverage detected