[Python-checkins] r80246 - python/branches/py3k/Doc/whatsnew/3.2.rst

R. David Murray rdmurray at bitdance.com
Wed Apr 21 03:15:09 CEST 2010


You missed correcting the typo here.  Also (someone can correct me if
I'm wrong) I think we generally leave the what's new updates to to the
what's new author.

On Tue, 20 Apr 2010 11:13:23 +0200, tarek.ziade <python-checkins at python.org> wrote:
Log:
added a note on shutil.copytree improvements

Modified:
   python/branches/py3k/Doc/whatsnew/3.2.rst

Modified: python/branches/py3k/Doc/whatsnew/3.2.rst
==============================================================================
--- python/branches/py3k/Doc/whatsnew/3.2.rst   (original)
+++ python/branches/py3k/Doc/whatsnew/3.2.rst   Tue Apr 20 11:13:23 2010
@@ -85,6 +85,17 @@
   (Contributed by Georg Brandl and Mattias Brändström;
   `appspot issue 53094 <http://codereview.appspot.com/53094>`_.)

+* The :func:`shutil.copytree` function has two new options
+
+  * ignore_dangling_symlinks: when symlinks=false (meaning that the function
+    copy the file pointed by the symlink, not the symlink itself)
+    this option will silent the error thrown if the file doesn't exists.
+
+  * copy_function: a callable that will be used to copy files.
+    :func:`shutil.copy2` is used by default.
+
+  (Contributed by Tarek Ziade)
+
 Multi-threading
 ===============

_______________________________________________
Python-checkins mailing list
Python-checkins at python.org
http://mail.python.org/mailman/listinfo/python-checkins


More information about the Python-checkins mailing list