(pid)
| 356 | |
| 357 | def test_unpickler_instance_attribute(self): |
| 358 | def persistent_load(pid): |
| 359 | called.append(pid) |
| 360 | return pid |
| 361 | |
| 362 | for proto in range(pickle.HIGHEST_PROTOCOL + 1): |
| 363 | unpickler = self.unpickler(io.BytesIO(self.dumps('abc', proto))) |
no test coverage detected