summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2016-01-06 18:31:33 (GMT)
committerGuido van Rossum <guido@python.org>2016-01-06 18:31:33 (GMT)
commit69bfb15bd8cb87dd07f1cf6c53f78b399c7ef937 (patch)
tree38aaacb57b92d4b3405b087d4cf4f5d578b3ba87 /Misc
parent6c2d33a258bb62bc74be4d848968c99c6fbfbba4 (diff)
downloadcpython-69bfb15bd8cb87dd07f1cf6c53f78b399c7ef937.zip
cpython-69bfb15bd8cb87dd07f1cf6c53f78b399c7ef937.tar.gz
cpython-69bfb15bd8cb87dd07f1cf6c53f78b399c7ef937.tar.bz2
Issue #26012: Don't traverse into symlinks for ** pattern in pathlib.Path.[r]glob().
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 621ffb2..4e00bcd 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -13,6 +13,9 @@ Core and Builtins
Library
-------
+- Issue #26012: Don't traverse into symlinks for ** pattern in
+ pathlib.Path.[r]glob().
+
- Issue #24120: Ignore PermissionError when traversing a tree with
pathlib.Path.[r]glob(). Patch by Ulrich Petri.