[Python-checkins] r80263 - in python/branches/py3k: Doc/library/shutil.rst Lib/shutil.py

tarek.ziade python-checkins at python.org
Tue Apr 20 16:31:49 CEST 2010


Author: tarek.ziade
Date: Tue Apr 20 16:31:49 2010
New Revision: 80263

Log:
fixed typo -- thanks Nick

Modified:
   python/branches/py3k/Doc/library/shutil.rst
   python/branches/py3k/Lib/shutil.py

Modified: python/branches/py3k/Doc/library/shutil.rst
==============================================================================
--- python/branches/py3k/Doc/library/shutil.rst	(original)
+++ python/branches/py3k/Doc/library/shutil.rst	Tue Apr 20 16:31:49 2010
@@ -103,7 +103,7 @@
    exist, a exception will be added in the list of errors raised in
    a :exc:`Error` exception at the end of the copy process.
    You can set the optional *ignore_dangling_symlinks* flag to true if you
-   want to silent this exception.
+   want to silence this exception.
 
    If *ignore* is given, it must be a callable that will receive as its
    arguments the directory being visited by :func:`copytree`, and a list of its

Modified: python/branches/py3k/Lib/shutil.py
==============================================================================
--- python/branches/py3k/Lib/shutil.py	(original)
+++ python/branches/py3k/Lib/shutil.py	Tue Apr 20 16:31:49 2010
@@ -162,7 +162,7 @@
     an Error exception at the end of the copy process.
 
     You can set the optional ignore_dangling_symlinks flag to true if you
-    want to silent this exception.
+    want to silence this exception.
 
 
     The optional ignore argument is a callable. If given, it


More information about the Python-checkins mailing list