diff options
author | Jakub KulĂk <Kulikjak@gmail.com> | 2019-09-11 15:11:57 (GMT) |
---|---|---|
committer | Gregory P. Smith <greg@krypto.org> | 2019-09-11 15:11:57 (GMT) |
commit | e20134f889a0cfcc37a46979f31a1c98b800de07 (patch) | |
tree | 0c56d2bd05ccd3160b05721e168a8658193f096a /Misc/NEWS.d/next/Library | |
parent | af636f4f91b8289b6dad95cb84123f6e22fd7f4f (diff) | |
download | cpython-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.rst | 2 |
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. |