[Python-checkins] cpython: Fix whitespace
antoine.pitrou
python-checkins at python.org
Sun Apr 3 17:09:11 CEST 2011
http://hg.python.org/cpython/rev/ff105faf1bac
changeset: 69113:ff105faf1bac
user: Antoine Pitrou <solipsis at pitrou.net>
date: Sun Apr 03 17:08:49 2011 +0200
summary:
Fix whitespace
files:
Lib/bz2.py | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/Lib/bz2.py b/Lib/bz2.py
--- a/Lib/bz2.py
+++ b/Lib/bz2.py
@@ -105,7 +105,7 @@
self._fp.write(self._compressor.flush())
self._compressor = None
finally:
- try:
+ try:
if self._closefp:
self._fp.close()
finally:
@@ -251,7 +251,7 @@
def readinto(self, b):
"""Read up to len(b) bytes into b.
-
+
Returns the number of bytes read (0 for EOF).
"""
with self._lock:
--
Repository URL: http://hg.python.org/cpython
More information about the Python-checkins
mailing list