summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2004-07-20 22:23:02 (GMT)
committerNeal Norwitz <nnorwitz@gmail.com>2004-07-20 22:23:02 (GMT)
commitd96d1015ef1bc635e5bf758944a4ac89d60b131c (patch)
tree2885c6e6421f5bca990b7b7cb69ffb167127ca60 /Doc
parenta4f651a2ae9288df1006c6f5a1ca922a5120dde1 (diff)
downloadcpython-d96d1015ef1bc635e5bf758944a4ac89d60b131c.zip
cpython-d96d1015ef1bc635e5bf758944a4ac89d60b131c.tar.gz
cpython-d96d1015ef1bc635e5bf758944a4ac89d60b131c.tar.bz2
SF #918101, allow files >= 8 GB using GNU extension
Diffstat (limited to 'Doc')
-rw-r--r--Doc/lib/libtarfile.tex11
1 files changed, 6 insertions, 5 deletions
diff --git a/Doc/lib/libtarfile.tex b/Doc/lib/libtarfile.tex
index fec2737..c841123 100644
--- a/Doc/lib/libtarfile.tex
+++ b/Doc/lib/libtarfile.tex
@@ -256,11 +256,12 @@ tar archive several times. Each archive member is represented by a
\begin{memberdesc}{posix}
If true, create a \POSIX{} 1003.1-1990 compliant archive. GNU
extensions are not used, because they are not part of the \POSIX{}
- standard. This limits the length of filenames to at most 256 and
- link names to 100 characters. A \exception{ValueError} is raised
- if a pathname exceeds this limit. If false, create a GNU tar
- compatible archive. It will not be \POSIX{} compliant, but can
- store pathnames of unlimited length.
+ standard. This limits the length of filenames to at most 256,
+ link names to 100 characters and the maximum file size to 8
+ gigabytes. A \exception{ValueError} is raised if a file exceeds
+ this limit. If false, create a GNU tar compatible archive. It
+ will not be \POSIX{} compliant, but can store files without any
+ of the above restrictions.
\end{memberdesc}
\begin{memberdesc}{dereference}