0
0
mirror of https://github.com/python/cpython.git synced 2024-11-21 21:09:37 +01:00

gh-125522: Remove bare except in test_zlib.test_flushes (gh-126321)

This commit is contained in:
simple-is-great 2024-11-02 17:27:07 +09:00 committed by GitHub
parent f032f6ba8f
commit cfb1b2f0cb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -505,20 +505,16 @@ class CompressObjectTestCase(BaseCompressTestCase, unittest.TestCase):
for sync in sync_opt:
for level in range(10):
try:
with self.subTest(sync=sync, level=level):
obj = zlib.compressobj( level )
a = obj.compress( data[:3000] )
b = obj.flush( sync )
c = obj.compress( data[3000:] )
d = obj.flush()
except:
print("Error for flush mode={}, level={}"
.format(sync, level))
raise
self.assertEqual(zlib.decompress(b''.join([a,b,c,d])),
data, ("Decompress failed: flush "
"mode=%i, level=%i") % (sync, level))
del obj
self.assertEqual(zlib.decompress(b''.join([a,b,c,d])),
data, ("Decompress failed: flush "
"mode=%i, level=%i") % (sync, level))
del obj
@unittest.skipUnless(hasattr(zlib, 'Z_SYNC_FLUSH'),
'requires zlib.Z_SYNC_FLUSH')