summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorLars Gustäbel <lars@gustaebel.de>2008-05-27 12:39:23 (GMT)
committerLars Gustäbel <lars@gustaebel.de>2008-05-27 12:39:23 (GMT)
commitb1a54a353021f3d478e1d9e667cef0fa92507c36 (patch)
tree968765c627007ccae0350e85264f16c0dcecdda6 /Misc
parent0902cac4b355e98184b0e435f9bb7e24ed68f6a2 (diff)
downloadcpython-b1a54a353021f3d478e1d9e667cef0fa92507c36.zip
cpython-b1a54a353021f3d478e1d9e667cef0fa92507c36.tar.gz
cpython-b1a54a353021f3d478e1d9e667cef0fa92507c36.tar.bz2
Do not close external file objects passed to tarfile.open(mode='w:bz2')
when the TarFile is closed.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 4f1c3c7..1decc90 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -63,6 +63,9 @@ Extension Modules
Library
-------
+- Do not close external file objects passed to tarfile.open(mode='w:bz2')
+ when the TarFile is closed.
+
- Issue #2959: For consistency with other file-like objects, gzip's
GzipFile.close() can now be called multiple times without raising
an exception.