diff options
author | Raymond Hettinger <python@rcn.com> | 2002-10-30 05:44:50 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2002-10-30 05:44:50 (GMT) |
commit | 2b9bfb33ffd780c5219186ef86904d7c9cfb8a8a (patch) | |
tree | 88378b3fd8f7f17fe7361c60eb60c522d26719ef /Lib/shutil.py | |
parent | fb05c4e5bb0660bada3cf90bb84cbb4b1ff782c8 (diff) | |
download | cpython-2b9bfb33ffd780c5219186ef86904d7c9cfb8a8a.zip cpython-2b9bfb33ffd780c5219186ef86904d7c9cfb8a8a.tar.gz cpython-2b9bfb33ffd780c5219186ef86904d7c9cfb8a8a.tar.bz2 |
Added new move() function to __all__.
Diffstat (limited to 'Lib/shutil.py')
-rw-r--r-- | Lib/shutil.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/shutil.py b/Lib/shutil.py index e94e7d9..6aa2e3d 100644 --- a/Lib/shutil.py +++ b/Lib/shutil.py @@ -10,7 +10,7 @@ import stat import exceptions __all__ = ["copyfileobj","copyfile","copymode","copystat","copy","copy2", - "copytree","rmtree","Error"] + "copytree","move","rmtree","Error"] class Error(exceptions.EnvironmentError): pass |