]> granicus.if.org Git - python/commitdiff
Fixed #8463: added missing reference to bztar in shutil's documentation.
authorTarek Ziadé <ziade.tarek@gmail.com>
Mon, 19 Apr 2010 21:28:21 +0000 (21:28 +0000)
committerTarek Ziadé <ziade.tarek@gmail.com>
Mon, 19 Apr 2010 21:28:21 +0000 (21:28 +0000)
Doc/library/shutil.rst
Lib/shutil.py
Misc/NEWS

index 25c911ff742358584dbf8b30253cf7de0985ff9c..23f03e7cc7fbe2db04c42dd4972f8fd7f94e5c47 100644 (file)
@@ -249,7 +249,7 @@ Archives operations
 
    *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
-   "zip", "tar", "ztar", or "gztar".
+   "zip", "tar", "ztar", "bztar" or "gztar".
 
    *root_dir* is a directory that will be the root directory of the
    archive; ie. we typically chdir into *root_dir* before creating the
index a94c5e1ea73a33a6f973ada4e5d6f4aaba97f845..5cfea63b8598e83e1655a8a052afec8815524298 100644 (file)
@@ -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
     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
     archive; ie. we typically chdir into 'root_dir' before creating the
index b597cdf31d7b518a0cab4b8f9e3fbbee1a5ee4c4..c7bf380af69270e71558f2d50c7dcf1bcdbde058 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -20,6 +20,8 @@ Core and Builtins
 Library
 -------
 
+- Issue #8463: added missing reference to bztar in shutil's documentation.
+
 - Issue #8438: Remove reference to the missing "surrogateescape" encoding
   error handler from the new IO library.