Skip to content

Commit 433d43f

Browse files
author
groot
committed
Lint fix for test_zstd; added blurb entry
1 parent 73884a0 commit 433d43f

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

Lib/test/test_zstd.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1954,7 +1954,7 @@ def test_read_bad_args(self):
19541954

19551955
def test_read_bad_data(self):
19561956
with ZstdFile(io.BytesIO(COMPRESSED_BOGUS)) as f:
1957-
self.assertGreaterEqual(len(f.read()),0)
1957+
self.assertGreaterEqual(len(f.read()),0)
19581958

19591959
def test_read_exception(self):
19601960
class C:
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
Updated Compression Lib to handle exceptions for failures/bad blocks during
2+
raw block decompression while not EOF. The prior propagated upstream
3+
affecting graceful handling of errors originating from the block
4+
decrompressin method.

0 commit comments

Comments
 (0)