Kaydet (Commit) 2900c441 authored tarafından Tarek Ziadé's avatar Tarek Ziadé

completed the __all__ list and changed the module doctest

üst 1e069eea
"""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. XXX The functions here don't copy the resource fork or other metadata on Mac.
...@@ -21,9 +21,10 @@ try: ...@@ -21,9 +21,10 @@ try:
except ImportError: except ImportError:
getgrnam = None getgrnam = None
__all__ = ["copyfileobj","copyfile","copymode","copystat","copy","copy2", __all__ = ["copyfileobj", "copyfile", "copymode", "copystat", "copy", "copy2",
"copytree","move","rmtree","Error", "SpecialFileError", "copytree", "move", "rmtree", "Error", "SpecialFileError",
"ExecError","make_archive"] "ExecError", "make_archive", "get_archive_formats",
"register_archive_format", "unregister_archive_format"]
class Error(EnvironmentError): class Error(EnvironmentError):
pass pass
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment