]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Merged revisions 80762 via svnmerge from
authorMark Dickinson <dickinsm@gmail.com>
Tue, 4 May 2010 18:46:24 +0000 (18:46 +0000)
committerMark Dickinson <dickinsm@gmail.com>
Tue, 4 May 2010 18:46:24 +0000 (18:46 +0000)
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r80762 | mark.dickinson | 2010-05-04 19:45:27 +0100 (Tue, 04 May 2010) | 3 lines

  Fix test_gzip failure on OS X.  The failure was a result of trying to fflush
  a file that wasn't open for writing.  Patch by Antoine Pitrou.
........

Lib/gzip.py

index b09d0186c3d86b27b8abd98b8468e664066802bb..fc21ad4475d9b35d20797dd832a437b41b3f2ba6 100644 (file)
@@ -333,7 +333,7 @@ class GzipFile:
         if self.mode == WRITE:
             # Ensure the compressor's buffer is flushed
             self.fileobj.write(self.compress.flush(zlib_mode))
-        self.fileobj.flush()
+            self.fileobj.flush()
 
     def fileno(self):
         """Invoke the underlying file object's fileno() method.