From: Sandro Tosi Date: Mon, 23 Apr 2012 18:07:15 +0000 (+0200) Subject: Issue #14650: fix typo in shutil.disk_usage() docstring; patch by Hobson Lane X-Git-Tag: v3.3.0a3~104 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f8ae4faf936bc5208d40f9074635ad8ded53abaa;p=thirdparty%2FPython%2Fcpython.git Issue #14650: fix typo in shutil.disk_usage() docstring; patch by Hobson Lane --- diff --git a/Lib/shutil.py b/Lib/shutil.py index 6664599ecc8e..0ac7a49c458d 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)