From: Antoine Pitrou Date: Sun, 3 Apr 2011 15:08:49 +0000 (+0200) Subject: Fix whitespace X-Git-Tag: v3.3.0a1~2690 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=24ce3863873d976ba28299ad7bd880f612e049af;p=thirdparty%2FPython%2Fcpython.git Fix whitespace --- diff --git a/Lib/bz2.py b/Lib/bz2.py index 667fffdeed5a..9506b4ad3b7c 100644 --- a/Lib/bz2.py +++ b/Lib/bz2.py @@ -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: