summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorHynek Schlawack <hs@ox.cx>2012-12-27 09:10:11 (GMT)
committerHynek Schlawack <hs@ox.cx>2012-12-27 09:10:11 (GMT)
commite26568f81244e3fb62ab07fd0a3405a99ee87895 (patch)
tree86fbc0d5c0e1fec053211cfa7087dd7a211e0514 /Misc
parent57a1233110ad9eed3c2e687323a161281d1526aa (diff)
downloadcpython-e26568f81244e3fb62ab07fd0a3405a99ee87895.zip
cpython-e26568f81244e3fb62ab07fd0a3405a99ee87895.tar.gz
cpython-e26568f81244e3fb62ab07fd0a3405a99ee87895.tar.bz2
#16618: Make glob.glob match consistently across strings and bytes
Fixes handling of leading dots. Patch by Serhiy Storchaka.
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 880e23a..4514739 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -179,6 +179,9 @@ Core and Builtins
Library
-------
+- Issue #16618: Make glob.glob match consistently across strings and bytes
+ regarding leading dots. Patch by Serhiy Storchaka.
+
- Issue #16702: test_urllib2_localnet tests now correctly ignores proxies for
localhost tests.