]> granicus.if.org Git - python/commitdiff
Add missing name in shutil.__all__
authorÉric Araujo <merwok@netwok.org>
Sun, 21 Aug 2011 14:14:01 +0000 (16:14 +0200)
committerÉric Araujo <merwok@netwok.org>
Sun, 21 Aug 2011 14:14:01 +0000 (16:14 +0200)
Lib/shutil.py

index 59a38fef76e30473a601e579311be9891dac5fac..be83251104ef94cbdfbd40b7b803621e672d22af 100644 (file)
@@ -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