summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d/next/Library
diff options
context:
space:
mode:
authorJakub KulĂ­k <Kulikjak@gmail.com>2019-09-11 15:11:57 (GMT)
committerGregory P. Smith <greg@krypto.org>2019-09-11 15:11:57 (GMT)
commite20134f889a0cfcc37a46979f31a1c98b800de07 (patch)
tree0c56d2bd05ccd3160b05721e168a8658193f096a /Misc/NEWS.d/next/Library
parentaf636f4f91b8289b6dad95cb84123f6e22fd7f4f (diff)
downloadcpython-e20134f889a0cfcc37a46979f31a1c98b800de07.zip
cpython-e20134f889a0cfcc37a46979f31a1c98b800de07.tar.gz
cpython-e20134f889a0cfcc37a46979f31a1c98b800de07.tar.bz2
bpo-38110: Use fdwalk for os.closerange() when available. (GH-15224)
Use fdwalk() on platforms that support it to implement os.closerange().
Diffstat (limited to 'Misc/NEWS.d/next/Library')
-rw-r--r--Misc/NEWS.d/next/Library/2019-09-11-14-49-20.bpo-38110.A19Y-q.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2019-09-11-14-49-20.bpo-38110.A19Y-q.rst b/Misc/NEWS.d/next/Library/2019-09-11-14-49-20.bpo-38110.A19Y-q.rst
new file mode 100644
index 0000000..7b94a2e
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2019-09-11-14-49-20.bpo-38110.A19Y-q.rst
@@ -0,0 +1,2 @@
+The os.closewalk() implementation now uses the libc fdwalk() API on
+platforms where it is available.