summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorLars Gustäbel <lars@gustaebel.de>2010-04-29 15:23:38 (GMT)
committerLars Gustäbel <lars@gustaebel.de>2010-04-29 15:23:38 (GMT)
commit5c4c4619b0144684a1309de746809879b04848fa (patch)
tree08f2fcf3ff8663c649f142b71382a5e0620b8d52 /Misc
parentf56a288b1e59cc260372f32665a209d381be404b (diff)
downloadcpython-5c4c4619b0144684a1309de746809879b04848fa.zip
cpython-5c4c4619b0144684a1309de746809879b04848fa.tar.gz
cpython-5c4c4619b0144684a1309de746809879b04848fa.tar.bz2
Issue #8464: tarfile.open(name, mode="w|") no longer creates
files with execute permissions set.
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 470c07c..73761ee 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -31,6 +31,9 @@ Core and Builtins
Library
-------
+- Issue #8464: tarfile no longer creates files with execute permissions set
+ when mode="w|" is used.
+
- Issue #7834: Fix connect() of Bluetooth L2CAP sockets with recent versions
of the Linux kernel. Patch by Yaniv Aknin.