summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2020-03-07 18:11:24 (GMT)
committerGitHub <noreply@github.com>2020-03-07 18:11:24 (GMT)
commit928b4dd0edf0022190a8a296c8ea65e7ef55c694 (patch)
tree3da9f52799baebf08d3bc7589f679650b3b3f776 /Misc
parent92b72788ecf2ee5dfac780c7dfb5ee5350fc641d (diff)
downloadcpython-928b4dd0edf0022190a8a296c8ea65e7ef55c694.zip
cpython-928b4dd0edf0022190a8a296c8ea65e7ef55c694.tar.gz
cpython-928b4dd0edf0022190a8a296c8ea65e7ef55c694.tar.bz2
bpo-38894: Fix pathlib.Path.glob in the presence of symlinks and insufficient permissions (GH-18815)
Co-authored-by: Matt Wozniski <mwozniski@bloomberg.net> (cherry picked from commit eb7560a73d46800e4ade4a8869139b48e6c92811) Co-authored-by: Pablo Galindo <Pablogsal@gmail.com>
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2020-03-06-21-04-39.bpo-38894.nfcGKv.rst4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2020-03-06-21-04-39.bpo-38894.nfcGKv.rst b/Misc/NEWS.d/next/Core and Builtins/2020-03-06-21-04-39.bpo-38894.nfcGKv.rst
new file mode 100644
index 0000000..a937b8e
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2020-03-06-21-04-39.bpo-38894.nfcGKv.rst
@@ -0,0 +1,4 @@
+Fix a bug that was causing incomplete results when calling
+``pathlib.Path.glob`` in the presence of symlinks that point
+to files where the user does not have read access. Patch by Pablo
+Galindo and Matt Wozniski.