From: Éric Araujo Date: Sun, 21 Aug 2011 14:14:01 +0000 (+0200) Subject: Add missing name in shutil.__all__ X-Git-Tag: v2.7.3rc1~488^2~6 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=04295009b8d7be75d5e361d8f332b12a6418799a;p=thirdparty%2FPython%2Fcpython.git Add missing name in shutil.__all__ --- diff --git a/Lib/shutil.py b/Lib/shutil.py index 59a38fef76e3..be83251104ef 100644 --- a/Lib/shutil.py +++ b/Lib/shutil.py @@ -25,7 +25,8 @@ except ImportError: __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