[Python-checkins] r67676 - in python/trunk: Doc/library/shutil.rst Mac/BuildScript/build-installer.py

benjamin.peterson python-checkins at python.org
Tue Dec 9 03:03:03 CET 2008


Author: benjamin.peterson
Date: Tue Dec  9 03:03:03 2008
New Revision: 67676

Log:
specify how things are copied

Modified:
   python/trunk/Doc/library/shutil.rst
   python/trunk/Mac/BuildScript/build-installer.py

Modified: python/trunk/Doc/library/shutil.rst
==============================================================================
--- python/trunk/Doc/library/shutil.rst	(original)
+++ python/trunk/Doc/library/shutil.rst	Tue Dec  9 03:03:03 2008
@@ -156,7 +156,7 @@
    Recursively move a file or directory to another location.
 
    If the destination is on the current filesystem, then simply use rename.
-   Otherwise, copy src to the dst and then remove src.
+   Otherwise, copy src (with :func:`copy2`) to the dst and then remove src.
 
    .. versionadded:: 2.3
 

Modified: python/trunk/Mac/BuildScript/build-installer.py
==============================================================================
--- python/trunk/Mac/BuildScript/build-installer.py	(original)
+++ python/trunk/Mac/BuildScript/build-installer.py	Tue Dec  9 03:03:03 2008
@@ -587,7 +587,7 @@
 
     novername = 'python-docs-html.tar.bz2'
     name = 'html-%s.tar.bz2'%(getFullVersion(),)
-    sourceArchive = os.path.join(DEPSRC, name)
+    sourceArchive = os.path.join(DEPSRC, novername)
     if os.path.exists(sourceArchive):
         print "Using local copy of %s"%(name,)
 


More information about the Python-checkins mailing list