(pid)
| 284 | |
| 285 | def test_unpickler_instance_attribute(self): |
| 286 | def persistent_load(pid): |
| 287 | called.append(pid) |
| 288 | return pid |
| 289 | |
| 290 | for proto in range(pickle.HIGHEST_PROTOCOL + 1): |
| 291 | unpickler = self.unpickler(io.BytesIO(self.dumps('abc', proto))) |
no test coverage detected