mirror of
https://github.com/python/cpython.git
synced 2025-07-23 03:05:38 +00:00
[3.10] bpo-38256: Fix binascii.crc32 large input. (GH-32000) (GH-32013)
Inputs >= 4GiB to `binascii.crc32(...)` when compiled to use the zlib crc32 implementation (the norm on POSIX) no longer return the wrong result.
This commit is contained in:
parent
94f038cbb2
commit
4c989e19c8
3 changed files with 26 additions and 9 deletions
|
@ -4,7 +4,7 @@ import unittest
|
|||
import binascii
|
||||
import array
|
||||
import re
|
||||
from test.support import warnings_helper
|
||||
from test.support import bigmemtest, _1G, _4G, warnings_helper
|
||||
|
||||
|
||||
# Note: "*_hex" functions are aliases for "(un)hexlify"
|
||||
|
@ -449,6 +449,14 @@ class BytearrayBinASCIITest(BinASCIITest):
|
|||
class MemoryviewBinASCIITest(BinASCIITest):
|
||||
type2test = memoryview
|
||||
|
||||
class ChecksumBigBufferTestCase(unittest.TestCase):
|
||||
"""bpo-38256 - check that inputs >=4 GiB are handled correctly."""
|
||||
|
||||
@bigmemtest(size=_4G + 4, memuse=1, dry_run=False)
|
||||
def test_big_buffer(self, size):
|
||||
data = b"nyan" * (_1G + 1)
|
||||
self.assertEqual(binascii.crc32(data), 1044521549)
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
unittest.main()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue