diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2016-09-07 07:58:05 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2016-09-07 07:58:05 (GMT) |
commit | 680cb152c5d220a74321fa905d4fc91bdec40fbb (patch) | |
tree | 466565fe8519e716ca18930de33534f8edbe9e90 /Misc | |
parent | 1194c6dfe3776111fd4868877df9fc6cd9756937 (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |