summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew
diff options
context:
space:
mode:
authortahia <tahia.khan@gmail.com>2024-04-22 18:23:36 (GMT)
committerGitHub <noreply@github.com>2024-04-22 18:23:36 (GMT)
commit8974a63f5ee0557e14db97eb1284a5dd8c49f8f7 (patch)
treeeae2a8c834a8bdb2bdfabbcf120c5db9ce00bdc3 /Doc/whatsnew
parent78ba4cb758ba1e40d27af6bc2fa15ed3e33a29d2 (diff)
downloadcpython-8974a63f5ee0557e14db97eb1284a5dd8c49f8f7.zip
cpython-8974a63f5ee0557e14db97eb1284a5dd8c49f8f7.tar.gz
cpython-8974a63f5ee0557e14db97eb1284a5dd8c49f8f7.tar.bz2
bpo-18108: Adding dir_fd and follow_symlinks keyword args to shutil.chown (GH-15811)
* Adding dir_fd and follow_symlinks keyword args to shutil.chown * Extending test_shutil.TestShutil.test_chown to include new kwargs * Updating shutil.chown documentation Co-authored-by: Serhiy Storchaka <storchaka@gmail.com> Co-authored-by: Berker Peksag <berker.peksag@gmail.com> Co-authored-by: Zachary Ware <zachary.ware@gmail.com>
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r--Doc/whatsnew/3.13.rst4
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.13.rst b/Doc/whatsnew/3.13.rst
index 5be5620..c04dc92 100644
--- a/Doc/whatsnew/3.13.rst
+++ b/Doc/whatsnew/3.13.rst
@@ -594,6 +594,10 @@ os.path
exactly one (back)slash to be absolute.
(Contributed by Barney Gale and Jon Foster in :gh:`44626`.)
+* Add support of *dir_fd* and *follow_symlinks* keyword arguments in
+ :func:`shutil.chown`.
+ (Contributed by Berker Peksag and Tahia K in :gh:`62308`)
+
pathlib
-------