Kaydet (Commit) f8ae4faf authored tarafından Sandro Tosi's avatar Sandro Tosi

Issue #14650: fix typo in shutil.disk_usage() docstring; patch by Hobson Lane

üst 9bc36530
...@@ -822,7 +822,7 @@ if hasattr(os, 'statvfs'): ...@@ -822,7 +822,7 @@ if hasattr(os, 'statvfs'):
def disk_usage(path): def disk_usage(path):
"""Return disk usage statistics about the given 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. 'free', which are the amount of total, used and free space, in bytes.
""" """
st = os.statvfs(path) st = os.statvfs(path)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment