From: Raymond Hettinger Date: Wed, 30 Oct 2002 05:44:50 +0000 (+0000) Subject: Added new move() function to __all__. X-Git-Tag: v2.3c1~3652 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2b9bfb33ffd780c5219186ef86904d7c9cfb8a8a;p=python Added new move() function to __all__. --- 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