We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 25fac86 commit a0476dfCopy full SHA for a0476df
numcodecs/checksum32.py
@@ -27,7 +27,7 @@ def decode(self, buf, out=None):
27
expect = arr[:4].view('<u4')[0]
28
checksum = self.checksum(arr[4:]) & 0xffffffff
29
if expect != checksum:
30
- raise RuntimeError('CRC32 checksum error')
+ raise RuntimeError('checksum failed')
31
return buffer_copy(arr[4:], out)
32
33
0 commit comments