diff options
author | Martin Panter <vadmium+py@gmail.com> | 2016-04-13 03:31:33 (GMT) |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2016-04-13 03:31:33 (GMT) |
commit | 81939db712b2fdd1dbb1bdc754f01885d4c37e06 (patch) | |
tree | cc18ebfb509399ea595996a44eb6756ae53859d7 | |
parent | a4d41b3a3edadbe83371c16a4333cea9b790fac7 (diff) | |
parent | 7f7c605f295059e582fb6e208b2a5ee242533042 (diff) | |
download | cpython-81939db712b2fdd1dbb1bdc754f01885d4c37e06.zip cpython-81939db712b2fdd1dbb1bdc754f01885d4c37e06.tar.gz cpython-81939db712b2fdd1dbb1bdc754f01885d4c37e06.tar.bz2 |
Issue #25496: Merge tarfile doc from 3.5
-rw-r--r-- | Doc/library/tarfile.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/tarfile.rst b/Doc/library/tarfile.rst index 7a233c1..5fa4787 100644 --- a/Doc/library/tarfile.rst +++ b/Doc/library/tarfile.rst @@ -101,7 +101,7 @@ Some facts and figures: For modes ``'w:gz'``, ``'r:gz'``, ``'w:bz2'``, ``'r:bz2'``, ``'x:gz'``, ``'x:bz2'``, :func:`tarfile.open` accepts the keyword argument - *compresslevel* to specify the compression level of the file. + *compresslevel* (default ``9``) to specify the compression level of the file. For special purposes, there is a second format for *mode*: ``'filemode|[compression]'``. :func:`tarfile.open` will return a :class:`TarFile` |