[Python-checkins] r78364 - python/trunk/Lib/shutil.py

tarek.ziade python-checkins at python.org
Tue Feb 23 06:36:41 CET 2010


Author: tarek.ziade
Date: Tue Feb 23 06:36:41 2010
New Revision: 78364

Log:
completed the __all__ list and changed the module doctest

Modified:
   python/trunk/Lib/shutil.py

Modified: python/trunk/Lib/shutil.py
==============================================================================
--- python/trunk/Lib/shutil.py	(original)
+++ python/trunk/Lib/shutil.py	Tue Feb 23 06:36:41 2010
@@ -1,4 +1,4 @@
-"""Utility functions for copying files and directory trees.
+"""Utility functions for copying and archiving files and directory trees.
 
 XXX The functions here don't copy the resource fork or other metadata on Mac.
 
@@ -21,9 +21,10 @@
 except ImportError:
     getgrnam = None
 
-__all__ = ["copyfileobj","copyfile","copymode","copystat","copy","copy2",
-           "copytree","move","rmtree","Error", "SpecialFileError",
-           "ExecError","make_archive"]
+__all__ = ["copyfileobj", "copyfile", "copymode", "copystat", "copy", "copy2",
+           "copytree", "move", "rmtree", "Error", "SpecialFileError",
+           "ExecError", "make_archive", "get_archive_formats",
+           "register_archive_format", "unregister_archive_format"]
 
 class Error(EnvironmentError):
     pass


More information about the Python-checkins mailing list