commit | e08e3d06864c5ad993f74613d9ed4ce69cc6cbc6 | [log] [tgz] |
---|---|---|
author | Georg Brandl <georg@python.org> | Sun May 25 08:07:37 2008 +0000 |
committer | Georg Brandl <georg@python.org> | Sun May 25 08:07:37 2008 +0000 |
tree | 7f8d08a1089aba9d116273c83e4545347967a60a | |
parent | ecd0ad3c573fd606c05fd550c5393a077b1a9c33 [diff] [blame] |
#2959: allow multiple close() calls for GzipFile.
diff --git a/Lib/gzip.py b/Lib/gzip.py index eeef3f8..7a3f813 100644 --- a/Lib/gzip.py +++ b/Lib/gzip.py
@@ -306,6 +306,8 @@ raise IOError, "Incorrect length of data produced" def close(self): + if self.fileobj is None: + return if self.mode == WRITE: self.fileobj.write(self.compress.flush()) write32u(self.fileobj, self.crc)