(self)
| 2489 | # XXX test __reduce__ protocol? |
| 2490 | |
| 2491 | def test_roundtrip_equality(self): |
| 2492 | expected = self._testdata |
| 2493 | for proto in protocols: |
| 2494 | s = self.dumps(expected, proto) |
| 2495 | got = self.loads(s) |
| 2496 | self.assert_is_copy(expected, got) |
| 2497 | |
| 2498 | # There are gratuitous differences between pickles produced by |
| 2499 | # pickle and cPickle, largely because cPickle starts PUT indices at |
nothing calls this directly
no test coverage detected