(self)
| 1050 | self.assertIs(unpickled[0], unpickled[1]) |
| 1051 | |
| 1052 | def test_negative_put(self): |
| 1053 | # Issue #12847 |
| 1054 | dumped = b'Va\np-1\n.' |
| 1055 | self.check_unpickling_error(ValueError, dumped) |
| 1056 | |
| 1057 | @requires_32b |
| 1058 | def test_negative_32b_binput(self): |
nothing calls this directly
no test coverage detected