(self)
| 1010 | |
| 1011 | @requires_32b |
| 1012 | def test_large_32b_bytearray8(self): |
| 1013 | dumped = b'\x80\x05\x96\4\0\0\0\1\0\0\0\xe2\x82\xac\x00.' |
| 1014 | self.check_unpickling_error((pickle.UnpicklingError, OverflowError), |
| 1015 | dumped) |
| 1016 | |
| 1017 | @requires_32b |
| 1018 | def test_large_32b_binunicode8(self): |
nothing calls this directly
no test coverage detected