summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2017-03-30 06:12:31 (GMT)
committerGitHub <noreply@github.com>2017-03-30 06:12:31 (GMT)
commitea720fe7e99d68924deab38de955fe97f87e2b29 (patch)
treea5996c9c8577f8824876575c8dcbf912d86226bc /Misc/NEWS
parent0a58f72762353768c7d26412e627ff196aac6c4e (diff)
downloadcpython-ea720fe7e99d68924deab38de955fe97f87e2b29.zip
cpython-ea720fe7e99d68924deab38de955fe97f87e2b29.tar.gz
cpython-ea720fe7e99d68924deab38de955fe97f87e2b29.tar.bz2
bpo-25996: Added support of file descriptors in os.scandir() on Unix. (#502)
os.fwalk() is sped up by 2 times by using os.scandir().
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 28751b3..b22322f 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -294,6 +294,9 @@ Extension Modules
Library
-------
+- bpo-25996: Added support of file descriptors in os.scandir() on Unix.
+ os.fwalk() is sped up by 2 times by using os.scandir().
+
- bpo-28699: Fixed a bug in pools in multiprocessing.pool that raising an
exception at the very first of an iterable may swallow the exception or
make the program hang. Patch by Davin Potts and Xiang Zhang.