mirror of
https://github.com/python/cpython.git
synced 2025-11-27 05:44:16 +00:00
Issue19619: skip zlib error test when zlib not available
This commit is contained in:
parent
2ee2c95595
commit
efa2e04033
1 changed files with 2 additions and 1 deletions
|
|
@ -2335,7 +2335,7 @@ transform_aliases = {
|
||||||
try:
|
try:
|
||||||
import zlib
|
import zlib
|
||||||
except ImportError:
|
except ImportError:
|
||||||
pass
|
zlib = None
|
||||||
else:
|
else:
|
||||||
bytes_transform_encodings.append("zlib_codec")
|
bytes_transform_encodings.append("zlib_codec")
|
||||||
transform_aliases["zlib_codec"] = ["zip", "zlib"]
|
transform_aliases["zlib_codec"] = ["zip", "zlib"]
|
||||||
|
|
@ -2440,6 +2440,7 @@ class TransformCodecTest(unittest.TestCase):
|
||||||
bad_input.decode("rot_13")
|
bad_input.decode("rot_13")
|
||||||
self.assertIsNone(failure.exception.__cause__)
|
self.assertIsNone(failure.exception.__cause__)
|
||||||
|
|
||||||
|
@unittest.skipUnless(zlib, "Requires zlib support")
|
||||||
def test_custom_zlib_error_is_wrapped(self):
|
def test_custom_zlib_error_is_wrapped(self):
|
||||||
# Check zlib codec gives a good error for malformed input
|
# Check zlib codec gives a good error for malformed input
|
||||||
msg = "^decoding with 'zlib_codec' codec failed"
|
msg = "^decoding with 'zlib_codec' codec failed"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue