summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorHynek Schlawack <hs@ox.cx>2012-12-16 11:39:11 (GMT)
committerHynek Schlawack <hs@ox.cx>2012-12-16 11:39:11 (GMT)
commitdec59ec5ff9f48d1fe9bf8f5ff3874ef9f0f54ad (patch)
treebdf7fbb906dc477ee437f96831e9eff3e9c9d1f8 /Misc
parent7eb8a1a0cb0b1b84bd9748e1e584f143c70b9e97 (diff)
downloadcpython-dec59ec5ff9f48d1fe9bf8f5ff3874ef9f0f54ad.zip
cpython-dec59ec5ff9f48d1fe9bf8f5ff3874ef9f0f54ad.tar.gz
cpython-dec59ec5ff9f48d1fe9bf8f5ff3874ef9f0f54ad.tar.bz2
#16664: Add regression tests for glob's behaviour concerning "."-entries
Patch by Sebastian Kreft.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS3
2 files changed, 4 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index 424e72a..81af9fd 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -587,6 +587,7 @@ Jerzy Kozera
Maksim Kozyarchuk
Stefan Krah
Bob Kras
+Sebastian Kreft
Holger Krekel
Michael Kremer
Fabian Kreutz
diff --git a/Misc/NEWS b/Misc/NEWS
index 57cab2d..c5288f7 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -689,6 +689,9 @@ Extension Modules
Tests
-----
+- Issue #16664: Add regression tests for glob's behaviour concerning entries
+ starting with a ".". Patch by Sebastian Kreft.
+
- Issue #15872: Add tests for a 3.3 regression which caused the new fd-based
shutil.rmtree not ignore all errors. Also add a test ensuring that rmtree
fails when being called on a symlink. Patch by Serhiy Storchaka.