[Python-checkins] r88050 - python/branches/py3k/Doc/whatsnew/3.2.rst
antoine.pitrou
python-checkins at python.org
Sun Jan 16 19:16:52 CET 2011
Author: antoine.pitrou
Date: Sun Jan 16 19:16:52 2011
New Revision: 88050
Log:
Fix misindent
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 Sun Jan 16 19:16:52 2011
@@ -1078,12 +1078,12 @@
The :func:`shutil.copytree` function has two new options:
- * *ignore_dangling_symlinks*: when ``symlinks=False`` so that the function
- copies the file pointed to by the symlink, not the symlink itself. This
- option will silence the error raised if the file doesn't exist.
+* *ignore_dangling_symlinks*: when ``symlinks=False`` so that the function
+ copies the file pointed to by the symlink, not the symlink itself. This
+ option will silence the error raised if the file doesn't exist.
- * *copy_function*: is a callable that will be used to copy files.
- :func:`shutil.copy2` is used by default.
+* *copy_function*: is a callable that will be used to copy files.
+ :func:`shutil.copy2` is used by default.
(Contributed by Tarek Ziadé.)
More information about the Python-checkins
mailing list