diff options
author | Raymond Hettinger <python@rcn.com> | 2002-10-30 05:44:50 +0000 |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2002-10-30 05:44:50 +0000 |
commit | 2b9bfb33ffd780c5219186ef86904d7c9cfb8a8a (patch) | |
tree | 88378b3fd8f7f17fe7361c60eb60c522d26719ef /Lib/shutil.py | |
parent | fb05c4e5bb0660bada3cf90bb84cbb4b1ff782c8 (diff) | |
download | cpython-git-2b9bfb33ffd780c5219186ef86904d7c9cfb8a8a.tar.gz |
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 e94e7d9e0c..6aa2e3d669 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 |