summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorLars Gustäbel <lars@gustaebel.de>2008-02-05 11:51:40 (GMT)
committerLars Gustäbel <lars@gustaebel.de>2008-02-05 11:51:40 (GMT)
commit0192e43d64aded9476b2ae90427a801f3f36c11c (patch)
treeffeb846b65f2473aedc6aeb04417b5d819ca076d /Misc
parentdc6d9e1f5e966a4427c1d9096ec7787082cfff0d (diff)
downloadcpython-0192e43d64aded9476b2ae90427a801f3f36c11c.zip
cpython-0192e43d64aded9476b2ae90427a801f3f36c11c.tar.gz
cpython-0192e43d64aded9476b2ae90427a801f3f36c11c.tar.bz2
Issue #2004: Use mode 0700 for temporary directories and default
permissions for missing directories. (will backport to 2.5)
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 8a4b449..cf07233 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -388,6 +388,9 @@ Core and builtins
Library
-------
+- #2004: tarfile.py: Use mode 0700 for temporary directories and default
+ permissions for missing directories.
+
- #175006: The debugger used to skip the condition of a "while" statement
after the first iteration. Now it correctly steps on the expression, and
breakpoints on the "while" statement are honored on each loop.