Skip to content

Commit 9d60339

Browse files
committed
Merge branch 'gh-95534' of github.com:rhpvorderman/cpython into gh-95534
2 parents c5d6888 + afd92ab commit 9d60339

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/gzip.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -514,7 +514,7 @@ def read(self, size=-1):
514514
"end-of-stream marker was reached")
515515

516516
self._crc = zlib.crc32(uncompress, self._crc)
517-
self._stream_size = self._stream_size + len(uncompress)
517+
self._stream_size += len(uncompress)
518518
self._pos += len(uncompress)
519519
return uncompress
520520

0 commit comments

Comments
 (0)