]> granicus.if.org Git - python/commitdiff
Fix whitespace
authorAntoine Pitrou <solipsis@pitrou.net>
Sun, 3 Apr 2011 15:08:49 +0000 (17:08 +0200)
committerAntoine Pitrou <solipsis@pitrou.net>
Sun, 3 Apr 2011 15:08:49 +0000 (17:08 +0200)
Lib/bz2.py

index 667fffdeed5a58ac67361bac9765a1ab06d5d881..9506b4ad3b7c8074fa60d43009119448948e188d 100644 (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: