mirror of
https://github.com/python/cpython.git
synced 2025-10-04 22:20:46 +00:00
Merge: Fix the return value of BZ2File._read_block() to be consistent with comments.
This commit is contained in:
commit
2747b2f21e
1 changed files with 1 additions and 1 deletions
|
@ -226,7 +226,7 @@ class BZ2File(io.BufferedIOBase):
|
||||||
data = self._buffer[self._buffer_offset : end]
|
data = self._buffer[self._buffer_offset : end]
|
||||||
self._buffer_offset = end
|
self._buffer_offset = end
|
||||||
self._pos += len(data)
|
self._pos += len(data)
|
||||||
return data
|
return data if return_data else None
|
||||||
|
|
||||||
# The loop assumes that _buffer_offset is 0. Ensure that this is true.
|
# The loop assumes that _buffer_offset is 0. Ensure that this is true.
|
||||||
self._buffer = self._buffer[self._buffer_offset:]
|
self._buffer = self._buffer[self._buffer_offset:]
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue