summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2016-09-07 07:58:05 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2016-09-07 07:58:05 (GMT)
commit680cb152c5d220a74321fa905d4fc91bdec40fbb (patch)
tree466565fe8519e716ca18930de33534f8edbe9e90 /Misc
parent1194c6dfe3776111fd4868877df9fc6cd9756937 (diff)
downloadcpython-680cb152c5d220a74321fa905d4fc91bdec40fbb.zip
cpython-680cb152c5d220a74321fa905d4fc91bdec40fbb.tar.gz
cpython-680cb152c5d220a74321fa905d4fc91bdec40fbb.tar.bz2
Issue #26032: Optimized globbing in pathlib by using os.scandir(); it is now
about 1.5--4 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 9da1757..1335af1 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -109,6 +109,9 @@ Library
- Issue #26798: Add BLAKE2 (blake2b and blake2s) to hashlib.
+- Issue #26032: Optimized globbing in pathlib by using os.scandir(); it is now
+ about 1.5--4 times faster.
+
- Issue #25596: Optimized glob() and iglob() functions in the
glob module; they are now about 3--6 times faster.