[issue29784] Erroneous link in shutil.copy description

2017-03-24 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: New changeset 701f13ab930b62a634579951dc610f737f461135 by Mariatta in branch '3.6': bpo-29784: Fix the reference to shutil.copy in the docs (GH-602) (GH-608) https://github.com/python/cpython/commit/701f13ab930b62a634579951dc610f737f461135 --

[issue29784] Erroneous link in shutil.copy description

2017-03-24 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: New changeset 70ee0cd5c2a3dba82cb8e0c0742c012f9134c040 by Mariatta in branch 'master': bpo-29784: Fix the reference to shutil.copy in the docs (GH-602) https://github.com/python/cpython/commit/70ee0cd5c2a3dba82cb8e0c0742c012f9134c040 --

[issue29784] Erroneous link in shutil.copy description

2017-03-24 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: New changeset 518d8fcb89896dd30fbf11c667ee4e6b509e4dd9 by Mariatta in branch '3.5': bpo-29784: Fix the reference to shutil.copy in the docs (GH-602) (GH-609) https://github.com/python/cpython/commit/518d8fcb89896dd30fbf11c667ee4e6b509e4dd9 --

[issue29784] Erroneous link in shutil.copy description

2017-03-10 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: Thanks all :) I fixed the two references to copy() in shutil docs, and backported to 3.5 and 3.6. Since this particular issue is fixed, I'm closing this. If people find other incorrect references, they can open another ticket. -- resolution: ->

[issue29784] Erroneous link in shutil.copy description

2017-03-10 Thread Mariatta Wijaya
Changes by Mariatta Wijaya : -- pull_requests: +504 ___ Python tracker ___ ___

[issue29784] Erroneous link in shutil.copy description

2017-03-10 Thread Mariatta Wijaya
Changes by Mariatta Wijaya : -- pull_requests: +503 ___ Python tracker ___ ___

[issue29784] Erroneous link in shutil.copy description

2017-03-10 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: See also issue21818. I suspect there are other incorrect references. -- nosy: +serhiy.storchaka ___ Python tracker

[issue29784] Erroneous link in shutil.copy description

2017-03-10 Thread Xiang Zhang
Xiang Zhang added the comment: Assigned to Mariatta :-). -- assignee: docs@python -> Mariatta nosy: +Mariatta ___ Python tracker ___

[issue29784] Erroneous link in shutil.copy description

2017-03-10 Thread Mariatta Wijaya
Changes by Mariatta Wijaya : -- pull_requests: +496 ___ Python tracker ___ ___

[issue29784] Erroneous link in shutil.copy description

2017-03-10 Thread Xiang Zhang
Xiang Zhang added the comment: Thanks for your report, Maxime! I open PRs to fix it. -- nosy: +xiang.zhang versions: +Python 3.5, Python 3.6, Python 3.7 ___ Python tracker

[issue29784] Erroneous link in shutil.copy description

2017-03-10 Thread Xiang Zhang
Changes by Xiang Zhang : -- pull_requests: +495 ___ Python tracker ___ ___ Python-bugs-list

[issue29784] Erroneous link in shutil.copy description

2017-03-10 Thread Maxime Buquet
New submission from Maxime Buquet: https://docs.python.org/3/library/shutil.html#shutil.copy The link to "copy()" in the description seems to be pointing to the copy module, but I suppose it was meant to point at shutil.copy. -- assignee: docs@python components: Documentation