This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author pitrou
Recipients mark.dickinson, pitrou
Date 2010-05-04.18:29:43
SpamBayes Score 0.0027775767
Marked as misclassified No
Message-id <1272997786.15.0.0727393521328.issue8614@psf.upfronthosting.co.za>
In-reply-to
Content
Ok, can you try the following patch then:

Index: Lib/gzip.py
===================================================================
--- Lib/gzip.py	(révision 80760)
+++ Lib/gzip.py	(copie de travail)
@@ -362,7 +362,7 @@
         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.
History
Date User Action Args
2010-05-04 18:29:46pitrousetrecipients: + pitrou, mark.dickinson
2010-05-04 18:29:46pitrousetmessageid: <1272997786.15.0.0727393521328.issue8614@psf.upfronthosting.co.za>
2010-05-04 18:29:43pitroulinkissue8614 messages
2010-05-04 18:29:43pitroucreate