From 10a51afc807195706af20c29e87c4a56c62737ac Mon Sep 17 00:00:00 2001 From: =?utf8?q?Tarek=20Ziad=C3=A9?= Date: Mon, 19 Apr 2010 21:31:42 +0000 Subject: [PATCH] Merged revisions 80221 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r80221 | tarek.ziade | 2010-04-19 23:28:21 +0200 (Mon, 19 Apr 2010) | 1 line Fixed #8463: added missing reference to bztar in shutil's documentation. ........ --- Doc/library/shutil.rst | 2 +- Lib/shutil.py | 2 +- Misc/NEWS | 2 ++ 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Doc/library/shutil.rst b/Doc/library/shutil.rst index 2d1e58543c..9d069032d0 100644 --- a/Doc/library/shutil.rst +++ b/Doc/library/shutil.rst @@ -221,7 +221,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 diff --git a/Lib/shutil.py b/Lib/shutil.py index 6688119bde..8ad0c64293 100644 --- a/Lib/shutil.py +++ b/Lib/shutil.py @@ -523,7 +523,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 diff --git a/Misc/NEWS b/Misc/NEWS index 758a2ffecd..db9cb0515d 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -318,6 +318,8 @@ C-API Library ------- +- Issue #8463: added missing reference to bztar in shutil's documentation. + - Issue #7154: urllib.request can now detect the proxy settings on OSX 10.6 (as long as the user didn't specify 'automatic proxy configuration'). -- 2.40.0