Commit 24ce3863 authored by Antoine Pitrou's avatar Antoine Pitrou

Fix whitespace

parent 37dc5f85
...@@ -105,7 +105,7 @@ class BZ2File(io.BufferedIOBase): ...@@ -105,7 +105,7 @@ class BZ2File(io.BufferedIOBase):
self._fp.write(self._compressor.flush()) self._fp.write(self._compressor.flush())
self._compressor = None self._compressor = None
finally: finally:
try: try:
if self._closefp: if self._closefp:
self._fp.close() self._fp.close()
finally: finally:
...@@ -251,7 +251,7 @@ class BZ2File(io.BufferedIOBase): ...@@ -251,7 +251,7 @@ class BZ2File(io.BufferedIOBase):
def readinto(self, b): def readinto(self, b):
"""Read up to len(b) bytes into b. """Read up to len(b) bytes into b.
Returns the number of bytes read (0 for EOF). Returns the number of bytes read (0 for EOF).
""" """
with self._lock: with self._lock:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment