diff options
author | Sandro Tosi <sandro.tosi@gmail.com> | 2012-04-23 18:07:15 (GMT) |
---|---|---|
committer | Sandro Tosi <sandro.tosi@gmail.com> | 2012-04-23 18:07:15 (GMT) |
commit | f8ae4faf936bc5208d40f9074635ad8ded53abaa (patch) | |
tree | 3e23cef3d03f17202da2d82818bfef934e7be9d1 /Lib/shutil.py | |
parent | 9bc36530831b3b59b68b0579aeb01cd27ea36c20 (diff) | |
download | cpython-f8ae4faf936bc5208d40f9074635ad8ded53abaa.zip cpython-f8ae4faf936bc5208d40f9074635ad8ded53abaa.tar.gz cpython-f8ae4faf936bc5208d40f9074635ad8ded53abaa.tar.bz2 |
Issue #14650: fix typo in shutil.disk_usage() docstring; patch by Hobson Lane
Diffstat (limited to 'Lib/shutil.py')
-rw-r--r-- | Lib/shutil.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/shutil.py b/Lib/shutil.py index 6664599..0ac7a49 100644 --- a/Lib/shutil.py +++ b/Lib/shutil.py @@ -822,7 +822,7 @@ if hasattr(os, 'statvfs'): def disk_usage(path): """Return disk usage statistics about the given path. - Returned valus is a named tuple with attributes 'total', 'used' and + Returned value is a named tuple with attributes 'total', 'used' and 'free', which are the amount of total, used and free space, in bytes. """ st = os.statvfs(path) |