[Python-checkins] r80221 - in python/trunk: Doc/library/shutil.rst Lib/shutil.py Misc/NEWS

tarek.ziade python-checkins at python.org
Mon Apr 19 23:28:21 CEST 2010


Author: tarek.ziade
Date: Mon Apr 19 23:28:21 2010
New Revision: 80221

Log:
Fixed #8463: added missing reference to bztar in shutil's documentation.

Modified:
   python/trunk/Doc/library/shutil.rst
   python/trunk/Lib/shutil.py
   python/trunk/Misc/NEWS

Modified: python/trunk/Doc/library/shutil.rst
==============================================================================
--- python/trunk/Doc/library/shutil.rst	(original)
+++ python/trunk/Doc/library/shutil.rst	Mon Apr 19 23:28:21 2010
@@ -249,7 +249,7 @@
 
    *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

Modified: python/trunk/Lib/shutil.py
==============================================================================
--- python/trunk/Lib/shutil.py	(original)
+++ python/trunk/Lib/shutil.py	Mon Apr 19 23:28:21 2010
@@ -525,7 +525,7 @@
 
     '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

Modified: python/trunk/Misc/NEWS
==============================================================================
--- python/trunk/Misc/NEWS	(original)
+++ python/trunk/Misc/NEWS	Mon Apr 19 23:28:21 2010
@@ -20,6 +20,8 @@
 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.
 


More information about the Python-checkins mailing list