diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2022-03-09 12:29:33 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-09 12:29:33 (GMT) |
commit | 02fbaf4887deaf0207a5805d3736e0124a694c14 (patch) | |
tree | 347a9fc4b3c3150cf1a41eb2b765a7c8f1d5aa3c /Doc/whatsnew | |
parent | 5eb03b1b5124659ee63eac7bc03f76cf2c7f9439 (diff) | |
download | cpython-02fbaf4887deaf0207a5805d3736e0124a694c14.zip cpython-02fbaf4887deaf0207a5805d3736e0124a694c14.tar.gz cpython-02fbaf4887deaf0207a5805d3736e0124a694c14.tar.bz2 |
bpo-46245: Add optional parameter dir_fd in shutil.rmtree() (GH-30365)
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/3.11.rst | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.11.rst b/Doc/whatsnew/3.11.rst index d9e5d06..628d4c0 100644 --- a/Doc/whatsnew/3.11.rst +++ b/Doc/whatsnew/3.11.rst @@ -283,6 +283,13 @@ os (Contributed by Dong-hee Na in :issue:`44611`.) +shutil +------ + +* Add optional parameter *dir_fd* in :func:`shutil.rmtree`. + (Contributed by Serhiy Storchaka in :issue:`46245`.) + + socket ------ |