This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: shutil.copytree documentation bug
Type: Stage:
Components: Documentation Versions: Python 2.3
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: nnorwitz Nosy List: jorend, nnorwitz
Priority: low Keywords:

Created on 2003-02-22 18:41 by jorend, last changed 2022-04-10 16:07 by admin. This issue is now closed.

Messages (2)
msg14777 - (view) Author: Jason Orendorff (jorend) Date: 2003-02-22 18:41
The docstring for shutil.copytree (and corresponding
Python module docs) says:

    Error are reported to standard output.

which is no longer the case.  The function now throws
shutil.Error if an error occurs.

Also, the documentation uses the source code of
shutil.copytree as an example.  That example is now out
of date.  That is, the copytree function has changed,
but the example hasn't.
msg14778 - (view) Author: Neal Norwitz (nnorwitz) * (Python committer) Date: 2003-02-23 21:46
Logged In: YES 
user_id=33168

Checked in doc fixes as:
 * Lib/shutil.py 1.28
 * Doc/lib/libshutil.tex 1.13
History
Date User Action Args
2022-04-10 16:07:01adminsetgithub: 38030
2003-02-22 18:41:15jorendcreate