diff options
author | Lars Gustäbel <lars@gustaebel.de> | 2010-10-29 09:08:19 (GMT) |
---|---|---|
committer | Lars Gustäbel <lars@gustaebel.de> | 2010-10-29 09:08:19 (GMT) |
commit | 9cbdd75ec5deda8f55edd7caab42dff65d009da2 (patch) | |
tree | 95b2e754a4de902227d69539df787d7b6935c178 /Doc | |
parent | 3122ce3e5d9c235619f44c6f32e5636a40b6f0be (diff) | |
download | cpython-9cbdd75ec5deda8f55edd7caab42dff65d009da2.zip cpython-9cbdd75ec5deda8f55edd7caab42dff65d009da2.tar.gz cpython-9cbdd75ec5deda8f55edd7caab42dff65d009da2.tar.bz2 |
Add read support for all missing variants of the GNU sparse
extensions. Thus, in addition to GNUTYPE_SPARSE headers, sparse
information in pax headers created by GNU tar can now be decoded.
All three formats 0.0, 0.1 and 1.0 are supported.
On filesystems that support this, holes in files are now restored
whenever a sparse member is extracted.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/tarfile.rst | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/library/tarfile.rst b/Doc/library/tarfile.rst index 853406c..0dfb065 100644 --- a/Doc/library/tarfile.rst +++ b/Doc/library/tarfile.rst @@ -20,7 +20,8 @@ Some facts and figures: * read/write support for the POSIX.1-1988 (ustar) format. * read/write support for the GNU tar format including *longname* and *longlink* - extensions, read-only support for the *sparse* extension. + extensions, read-only support for all variants of the *sparse* extension + including restoration of sparse files. * read/write support for the POSIX.1-2001 (pax) format. |