From 04295009b8d7be75d5e361d8f332b12a6418799a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89ric=20Araujo?= Date: Sun, 21 Aug 2011 16:14:01 +0200 Subject: Add missing name in shutil.__all__ --- Lib/shutil.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Lib/shutil.py b/Lib/shutil.py index 59a38fe..be83251 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 -- cgit v0.12