diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2013-02-16 15:29:56 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2013-02-16 15:29:56 (GMT) |
commit | f8def28ff03f3167bd0becabab4dc5d70ee22033 (patch) | |
tree | 5424070e12f33782e463043030531641866bbf2c /Doc/library/tarfile.rst | |
parent | a0eb80999538febe046164bae541d3f07b899dfb (diff) | |
download | cpython-f8def28ff03f3167bd0becabab4dc5d70ee22033.zip cpython-f8def28ff03f3167bd0becabab4dc5d70ee22033.tar.gz cpython-f8def28ff03f3167bd0becabab4dc5d70ee22033.tar.bz2 |
Issue #17193: Use binary prefixes (KiB, MiB, GiB) for memory units.
Diffstat (limited to 'Doc/library/tarfile.rst')
-rw-r--r-- | Doc/library/tarfile.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/tarfile.rst b/Doc/library/tarfile.rst index 86dd33d..b8b65b9 100644 --- a/Doc/library/tarfile.rst +++ b/Doc/library/tarfile.rst @@ -669,11 +669,11 @@ There are three tar formats that can be created with the :mod:`tarfile` module: * The POSIX.1-1988 ustar format (:const:`USTAR_FORMAT`). It supports filenames up to a length of at best 256 characters and linknames up to 100 characters. The - maximum file size is 8 gigabytes. This is an old and limited but widely + maximum file size is 8 GiB. This is an old and limited but widely supported format. * The GNU tar format (:const:`GNU_FORMAT`). It supports long filenames and - linknames, files bigger than 8 gigabytes and sparse files. It is the de facto + linknames, files bigger than 8 GiB and sparse files. It is the de facto standard on GNU/Linux systems. :mod:`tarfile` fully supports the GNU tar extensions for long names, sparse file support is read-only. |