[issue41646] shutil.copy documentation should clarify support for path-like objects

2020-10-20 Thread Inada Naoki
Inada Naoki added the comment: New changeset 19019eccdeeb8dea027bd7766ca9fe2892972da4 by Miss Skeleton (bot) in branch '3.9': bpo-41646: Mention path-like objects support in the docs for shutil.copy() (GH-22208) https://github.com/python/cpython/commit/19019eccdeeb8dea027bd7766ca9fe2892972da

[issue41646] shutil.copy documentation should clarify support for path-like objects

2020-10-20 Thread Inada Naoki
Inada Naoki added the comment: New changeset 6443a8ccc886749f5e83a8ca073006742b605d90 by Miss Skeleton (bot) in branch '3.8': bpo-41646: Mention path-like objects support in the docs for shutil.copy() (GH-22208) https://github.com/python/cpython/commit/6443a8ccc886749f5e83a8ca073006742b605d9

[issue41646] shutil.copy documentation should clarify support for path-like objects

2020-09-14 Thread Steve Dower
Steve Dower added the comment: Thanks! -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ _

[issue41646] shutil.copy documentation should clarify support for path-like objects

2020-09-14 Thread miss-islington
Change by miss-islington : -- pull_requests: +21299 pull_request: https://github.com/python/cpython/pull/22244 ___ Python tracker ___ __

[issue41646] shutil.copy documentation should clarify support for path-like objects

2020-09-14 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 5.0 -> 6.0 pull_requests: +21298 pull_request: https://github.com/python/cpython/pull/22243 ___ Python tracker _

[issue41646] shutil.copy documentation should clarify support for path-like objects

2020-09-14 Thread Steve Dower
Steve Dower added the comment: New changeset 8f2b991eef062c22c429a96983c78be007180b66 by Zackery Spytz in branch 'master': bpo-41646: Mention path-like objects support in the docs for shutil.copy() (GH-22208) https://github.com/python/cpython/commit/8f2b991eef062c22c429a96983c78be007180b66

[issue41646] shutil.copy documentation should clarify support for path-like objects

2020-09-11 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch nosy: +ZackerySpytz nosy_count: 4.0 -> 5.0 pull_requests: +21263 stage: -> patch review pull_request: https://github.com/python/cpython/pull/22208 ___ Python tracker

[issue41646] shutil.copy documentation should clarify support for path-like objects

2020-08-27 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: copy uses copyfile and copymode. Both were updated to support path-like objects in https://github.com/python/cpython/pull/15141 . It makes sense to update copy's documentation too. -- nosy: +steve.dower, xtreak title: Outdated shutil.copy d