summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2014-04-01 23:13:18 (GMT)
committerBenjamin Peterson <benjamin@python.org>2014-04-01 23:13:18 (GMT)
commitee5f1c13d1ea21c628068fdf142823177f5526c2 (patch)
tree971c190264009a1f615d856594d46554b5494bfd /Misc/NEWS
parentb4be376d16cba52c91afc5a9dc8ff36ae96e26d9 (diff)
downloadcpython-ee5f1c13d1ea21c628068fdf142823177f5526c2.zip
cpython-ee5f1c13d1ea21c628068fdf142823177f5526c2.tar.gz
cpython-ee5f1c13d1ea21c628068fdf142823177f5526c2.tar.bz2
remove directory mode check from makedirs (closes #21082)
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 693a0c8..3913f94 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ What's New in Python 3.2.6?
Library
-------
+- Issue #21082: In os.makedirs, do not set the process-wide umask. Note this
+ changes behavior of makedirs when exist_ok=True.
+
- Issue #20246: Fix buffer overflow in socket.recvfrom_into.
- Issue #12226: HTTPS is now used by default when connecting to PyPI.