mirror of https://github.com/python/cpython
Fixed #8463: added missing reference to bztar in shutil's documentation.
This commit is contained in:
parent
f1c28b75e0
commit
8a12f940fe
|
@ -249,7 +249,7 @@ Archives operations
|
||||||
|
|
||||||
*base_name* is the name of the file to create, including the path, minus
|
*base_name* is the name of the file to create, including the path, minus
|
||||||
any format-specific extension. *format* is the archive format: one of
|
any format-specific extension. *format* is the archive format: one of
|
||||||
"zip", "tar", "ztar", or "gztar".
|
"zip", "tar", "ztar", "bztar" or "gztar".
|
||||||
|
|
||||||
*root_dir* is a directory that will be the root directory of the
|
*root_dir* is a directory that will be the root directory of the
|
||||||
archive; ie. we typically chdir into *root_dir* before creating the
|
archive; ie. we typically chdir into *root_dir* before creating the
|
||||||
|
|
|
@ -525,7 +525,7 @@ def make_archive(base_name, format, root_dir=None, base_dir=None, verbose=0,
|
||||||
|
|
||||||
'base_name' is the name of the file to create, minus any format-specific
|
'base_name' is the name of the file to create, minus any format-specific
|
||||||
extension; 'format' is the archive format: one of "zip", "tar", "ztar",
|
extension; 'format' is the archive format: one of "zip", "tar", "ztar",
|
||||||
or "gztar".
|
"bztar" or "gztar".
|
||||||
|
|
||||||
'root_dir' is a directory that will be the root directory of the
|
'root_dir' is a directory that will be the root directory of the
|
||||||
archive; ie. we typically chdir into 'root_dir' before creating the
|
archive; ie. we typically chdir into 'root_dir' before creating the
|
||||||
|
|
|
@ -20,6 +20,8 @@ Core and Builtins
|
||||||
Library
|
Library
|
||||||
-------
|
-------
|
||||||
|
|
||||||
|
- Issue #8463: added missing reference to bztar in shutil's documentation.
|
||||||
|
|
||||||
- Issue #8438: Remove reference to the missing "surrogateescape" encoding
|
- Issue #8438: Remove reference to the missing "surrogateescape" encoding
|
||||||
error handler from the new IO library.
|
error handler from the new IO library.
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue