[Python-checkins] cpython (2.7): Add missing name in shutil.__all__

eric.araujo python-checkins at python.org
Fri Aug 26 16:37:33 CEST 2011


http://hg.python.org/cpython/rev/bb214afa366f
changeset:   72087:bb214afa366f
branch:      2.7
parent:      72008:4964215ddcba
user:        Éric Araujo <merwok at netwok.org>
date:        Sun Aug 21 16:14:01 2011 +0200
summary:
  Add missing name in shutil.__all__

files:
  Lib/shutil.py |  3 ++-
  1 files changed, 2 insertions(+), 1 deletions(-)


diff --git a/Lib/shutil.py b/Lib/shutil.py
--- a/Lib/shutil.py
+++ b/Lib/shutil.py
@@ -25,7 +25,8 @@
 __all__ = ["copyfileobj", "copyfile", "copymode", "copystat", "copy", "copy2",
            "copytree", "move", "rmtree", "Error", "SpecialFileError",
            "ExecError", "make_archive", "get_archive_formats",
-           "register_archive_format", "unregister_archive_format"]
+           "register_archive_format", "unregister_archive_format",
+           "ignore_patterns"]
 
 class Error(EnvironmentError):
     pass

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list