summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2016-09-06 19:33:41 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2016-09-06 19:33:41 (GMT)
commit28ab634fa6e733bd01786ae90c3f8173bf1f8ad0 (patch)
treed1f944ccfbd6058ba0490d7ac84e1ab446a2dc5e /Misc
parentea525a2d1a798f529b015f86b174d478806ac7ec (diff)
downloadcpython-28ab634fa6e733bd01786ae90c3f8173bf1f8ad0.zip
cpython-28ab634fa6e733bd01786ae90c3f8173bf1f8ad0.tar.gz
cpython-28ab634fa6e733bd01786ae90c3f8173bf1f8ad0.tar.bz2
Issue #25596: Optimized glob() and iglob() functions in the
glob module; they are now about 3--6 times faster.
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 3f7e1fb..f34c6859 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -89,6 +89,9 @@ Core and Builtins
Library
-------
+- Issue #25596: Optimized glob() and iglob() functions in the
+ glob module; they are now about 3--6 times faster.
+
- Issue #27928: Add scrypt (password-based key derivation function) to
hashlib module (requires OpenSSL 1.1.0).