[issue45234] copy_file raises FileNotFoundError when src is a directory

2021-10-04 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: New changeset e0b61b28641bdd20cfeff6d9878f1318b711ca19 by Pablo Galindo (Miss Islington (bot)) in branch '3.10': bpo-45234: Fix FileNotFound exception raised instead of IsADirectoryError in shutil.copyfile() (GH-28421) (GH-28508)

[issue45234] copy_file raises FileNotFoundError when src is a directory

2021-09-27 Thread Terry J. Reedy
Change by Terry J. Reedy : -- resolution: -> fixed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue45234] copy_file raises FileNotFoundError when src is a directory

2021-09-22 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: Cherry-picked! -- priority: release blocker -> stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue45234] copy_file raises FileNotFoundError when src is a directory

2021-09-21 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 09390c837a0bf73e213db2fbde34d756fa77a837 by Miss Islington (bot) in branch '3.9': bpo-45234: Fix FileNotFound exception raised instead of IsADirectoryError in shutil.copyfile() (GH-28421) (GH-28507)

[issue45234] copy_file raises FileNotFoundError when src is a directory

2021-09-21 Thread Łukasz Langa
Łukasz Langa added the comment: Pablo, this regression was fixed in GH-28508 which should go into 3.10.0. -- nosy: +pablogsal priority: normal -> release blocker ___ Python tracker

[issue45234] copy_file raises FileNotFoundError when src is a directory

2021-09-21 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 41d48bc038b254cc4a78a2d840097196b9545a84 by Miss Islington (bot) in branch '3.10': bpo-45234: Fix FileNotFound exception raised instead of IsADirectoryError in shutil.copyfile() (GH-28421) (GH-28508)

[issue45234] copy_file raises FileNotFoundError when src is a directory

2021-09-21 Thread miss-islington
Change by miss-islington : -- pull_requests: +26904 pull_request: https://github.com/python/cpython/pull/28508 ___ Python tracker ___

[issue45234] copy_file raises FileNotFoundError when src is a directory

2021-09-21 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 5.0 -> 6.0 pull_requests: +26902 pull_request: https://github.com/python/cpython/pull/28507 ___ Python tracker

[issue45234] copy_file raises FileNotFoundError when src is a directory

2021-09-21 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset b7eac52b466f697d3e89f47508e0df0196a98970 by andrei kulakov in branch 'main': bpo-45234: Fix FileNotFound exception raised instead of IsADirectoryError in shutil.copyfile() (GH-28421)

[issue45234] copy_file raises FileNotFoundError when src is a directory

2021-09-20 Thread Andrei Kulakov
Change by Andrei Kulakov : -- nosy: +kj ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue45234] copy_file raises FileNotFoundError when src is a directory

2021-09-18 Thread Eryk Sun
Change by Eryk Sun : -- nosy: +gregory.p.smith ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue45234] copy_file raises FileNotFoundError when src is a directory

2021-09-17 Thread Andrei Kulakov
Andrei Kulakov added the comment: Alex: thanks for the report! I've added a PR that should fix this. -- ___ Python tracker ___

[issue45234] copy_file raises FileNotFoundError when src is a directory

2021-09-17 Thread Andrei Kulakov
Change by Andrei Kulakov : -- keywords: +patch nosy: +andrei.avk nosy_count: 1.0 -> 2.0 pull_requests: +26833 stage: -> patch review pull_request: https://github.com/python/cpython/pull/28421 ___ Python tracker

[issue45234] copy_file raises FileNotFoundError when src is a directory

2021-09-17 Thread Alex Grund
New submission from Alex Grund : After https://bugs.python.org/issue43219 was resolved the function now shows faulty behavior when the source is a directory: `copy_file('/path/to/dir', '/target')` throws a FileNotFoundError while previously it was a IsADirectoryError which is clearly