mirror of https://github.com/python/cpython.git
Fix typo in bz2 module.
This commit is contained in:
parent
62666e1db1
commit
f1a1af21eb
|
@ -155,7 +155,7 @@ def _check_can_seek(self):
|
||||||
if not self.seekable():
|
if not self.seekable():
|
||||||
self._check_not_closed()
|
self._check_not_closed()
|
||||||
raise io.UnsupportedOperation("Seeking is only supported "
|
raise io.UnsupportedOperation("Seeking is only supported "
|
||||||
"on files opening for reading")
|
"on files open for reading")
|
||||||
|
|
||||||
# Fill the readahead buffer if it is empty. Returns False on EOF.
|
# Fill the readahead buffer if it is empty. Returns False on EOF.
|
||||||
def _fill_buffer(self):
|
def _fill_buffer(self):
|
||||||
|
|
Loading…
Reference in New Issue