(self)
| 1016 | |
| 1017 | @requires_32b |
| 1018 | def test_large_32b_binunicode8(self): |
| 1019 | dumped = b'\x80\x04\x8d\4\0\0\0\1\0\0\0\xe2\x82\xac\x00.' |
| 1020 | self.check_unpickling_error((pickle.UnpicklingError, OverflowError), |
| 1021 | dumped) |
| 1022 | |
| 1023 | def test_large_binstring(self): |
| 1024 | errmsg = 'BINSTRING pickle has negative byte count' |
nothing calls this directly
no test coverage detected