Fix whitespace

This commit is contained in:
Antoine Pitrou 2011-04-03 17:08:49 +02:00
parent 37dc5f85b8
commit 24ce386387
1 changed files with 2 additions and 2 deletions

View File

@ -105,7 +105,7 @@ class BZ2File(io.BufferedIOBase):
self._fp.write(self._compressor.flush())
self._compressor = None
finally:
try:
try:
if self._closefp:
self._fp.close()
finally:
@ -251,7 +251,7 @@ class BZ2File(io.BufferedIOBase):
def readinto(self, b):
"""Read up to len(b) bytes into b.
Returns the number of bytes read (0 for EOF).
"""
with self._lock: