[Python-checkins] python/dist/src/Lib shutil.py,1.24,1.25

rhettinger@users.sourceforge.net rhettinger@users.sourceforge.net
Tue, 29 Oct 2002 21:44:53 -0800


Update of /cvsroot/python/python/dist/src/Lib
In directory usw-pr-cvs1:/tmp/cvs-serv17566

Modified Files:
	shutil.py 
Log Message:
Added new move() function to __all__.


Index: shutil.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/shutil.py,v
retrieving revision 1.24
retrieving revision 1.25
diff -C2 -d -r1.24 -r1.25
*** shutil.py	7 Oct 2002 13:23:24 -0000	1.24
--- shutil.py	30 Oct 2002 05:44:50 -0000	1.25
***************
*** 11,15 ****
  
  __all__ = ["copyfileobj","copyfile","copymode","copystat","copy","copy2",
!            "copytree","rmtree","Error"]
  
  class Error(exceptions.EnvironmentError):
--- 11,15 ----
  
  __all__ = ["copyfileobj","copyfile","copymode","copystat","copy","copy2",
!            "copytree","move","rmtree","Error"]
  
  class Error(exceptions.EnvironmentError):