summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorSandro Tosi <sandro.tosi@gmail.com>2011-08-22 22:58:21 (GMT)
committerSandro Tosi <sandro.tosi@gmail.com>2011-08-22 22:58:21 (GMT)
commitaec2f21f71c33de5a3cd377a63371fcc0894ba4c (patch)
treec95e74a06976793ac7dcb1ac50872ecd8768a1b8 /Doc
parent83feff568600715ffcccc1ce1742572f1de1e50a (diff)
downloadcpython-aec2f21f71c33de5a3cd377a63371fcc0894ba4c.zip
cpython-aec2f21f71c33de5a3cd377a63371fcc0894ba4c.tar.gz
cpython-aec2f21f71c33de5a3cd377a63371fcc0894ba4c.tar.bz2
#12191: added entry in What's New (+ small editing on shutil section)
Diffstat (limited to 'Doc')
-rw-r--r--Doc/whatsnew/3.3.rst9
1 files changed, 6 insertions, 3 deletions
diff --git a/Doc/whatsnew/3.3.rst b/Doc/whatsnew/3.3.rst
index 3036a3e..de3f2ed 100644
--- a/Doc/whatsnew/3.3.rst
+++ b/Doc/whatsnew/3.3.rst
@@ -249,10 +249,13 @@ handle NAT with non-secure FTP without opening fixed ports.
shutil
------
-The :mod:`shutil` module has a new :func:`~shutil.disk_usage` function providing total,
-used and free disk space statistics.
+* The :mod:`shutil` module has these new fuctions:
-(Contributed by Giampaolo RodolĂ  in :issue:`12442`)
+ * :func:`~shutil.disk_usage`: provides total, used and free disk space
+ statistics. (Contributed by Giampaolo RodolĂ  in :issue:`12442`)
+ * :func:`~shutil.chown`: allows one to change user and/or group of the given
+ path also specifying the user/group names and not only their numeric
+ ids. (Contributed by Sandro Tosi in :issue:`12191`)
Optimizations