(self)
| 1004 | |
| 1005 | @requires_32b |
| 1006 | def test_large_32b_binbytes8(self): |
| 1007 | dumped = b'\x80\x04\x8e\4\0\0\0\1\0\0\0\xe2\x82\xac\x00.' |
| 1008 | self.check_unpickling_error((pickle.UnpicklingError, OverflowError), |
| 1009 | dumped) |
| 1010 | |
| 1011 | @requires_32b |
| 1012 | def test_large_32b_bytearray8(self): |
nothing calls this directly
no test coverage detected