Skip to content

Commit c339978

Browse files
author
Tarek Ziadé
committed
Merged revisions 78364 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r78364 | tarek.ziade | 2010-02-23 00:36:41 -0500 (Tue, 23 Feb 2010) | 1 line completed the __all__ list and changed the module doctest ........
1 parent 396fad7 commit c339978

1 file changed

Lines changed: 5 additions & 4 deletions

File tree

Lib/shutil.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
"""Utility functions for copying files and directory trees.
1+
"""Utility functions for copying and archiving files and directory trees.
22
33
XXX The functions here don't copy the resource fork or other metadata on Mac.
44
@@ -22,9 +22,10 @@
2222
except ImportError:
2323
getgrnam = None
2424

25-
__all__ = ["copyfileobj","copyfile","copymode","copystat","copy","copy2",
26-
"copytree","move","rmtree","Error", "SpecialFileError",
27-
"ExecError","make_archive"]
25+
__all__ = ["copyfileobj", "copyfile", "copymode", "copystat", "copy", "copy2",
26+
"copytree", "move", "rmtree", "Error", "SpecialFileError",
27+
"ExecError", "make_archive", "get_archive_formats",
28+
"register_archive_format", "unregister_archive_format"]
2829

2930
class Error(EnvironmentError):
3031
pass

0 commit comments

Comments
 (0)