summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2014-01-18 15:53:39 +0200
committerSerhiy Storchaka <storchaka@gmail.com>2014-01-18 15:53:39 +0200
commit7d68a1c921bb53c5b72fc7a884fc048185001f2c (patch)
tree0036c9f2bc8faec21d54f68873012704452c705f
parentce644a09ac731830aa3a82e9a36e41bc022383c2 (diff)
parent9fbec7ad5e8fcdd9dcc5abd496341b86d12a4472 (diff)
downloadcpython-git-7d68a1c921bb53c5b72fc7a884fc048185001f2c.tar.gz
Issue #20238: TarFile opened with external fileobj and "w:gz" mode didn't
write complete output on close.
-rwxr-xr-xLib/tarfile.py2
-rw-r--r--Lib/test/test_tarfile.py6
-rw-r--r--Misc/NEWS3
3 files changed, 10 insertions, 1 deletions
diff --git a/Lib/tarfile.py b/Lib/tarfile.py
index 40d438c45c..ec8af06498 100755
--- a/Lib/tarfile.py
+++ b/Lib/tarfile.py
@@ -1618,7 +1618,7 @@ class TarFile(object):
if not extfileobj and fileobj is not None:
fileobj.close()
raise
- t._extfileobj = extfileobj
+ t._extfileobj = False
return t
@classmethod
diff --git a/Lib/test/test_tarfile.py b/Lib/test/test_tarfile.py
index 72ae31adda..e0c91035bc 100644
--- a/Lib/test/test_tarfile.py
+++ b/Lib/test/test_tarfile.py
@@ -857,6 +857,12 @@ class WriteTestBase(TarTest):
tar.addfile(tarfile.TarInfo("foo"))
tar.close()
self.assertFalse(fobj.closed, "external fileobjs must never closed")
+ # Issue #20238: Incomplete gzip output with mode="w:gz"
+ data = fobj.getvalue()
+ del tar
+ support.gc_collect()
+ self.assertFalse(fobj.closed)
+ self.assertEqual(data, fobj.getvalue())
class WriteTest(WriteTestBase, unittest.TestCase):
diff --git a/Misc/NEWS b/Misc/NEWS
index a4aaafac62..9a003f50f5 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -25,6 +25,9 @@ Core and Builtins
Library
-------
+- Issue #20238: TarFile opened with external fileobj and "w:gz" mode didn't
+ write complete output on close.
+
- Issue #20245: The open functions in the tarfile module now correctly handle
empty mode.