From 2b9bfb33ffd780c5219186ef86904d7c9cfb8a8a Mon Sep 17 00:00:00 2001 From: Raymond Hettinger Date: Wed, 30 Oct 2002 05:44:50 +0000 Subject: [PATCH] Added new move() function to __all__. --- Lib/shutil.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/shutil.py b/Lib/shutil.py index e94e7d9e0ca..6aa2e3d669e 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