[issue41134] distutils.dir_util.copy_tree FileExistsError when updating symlinks

2021-02-03 Thread Steve Dower
Steve Dower added the comment: Distutils is now deprecated (see PEP 632) and all tagged issues are being closed. From now until removal, only release blocking issues will be considered for distutils. If this issue does not relate to distutils, please remove the component and reopen it. If

[issue41134] distutils.dir_util.copy_tree FileExistsError when updating symlinks

2020-09-19 Thread Irit Katriel
Change by Irit Katriel : -- components: +Distutils nosy: +dstufft, eric.araujo type: -> behavior ___ Python tracker ___ ___

[issue41134] distutils.dir_util.copy_tree FileExistsError when updating symlinks

2020-07-29 Thread Terry J. Reedy
Change by Terry J. Reedy : -- dependencies: +Add race-free os.link and os.symlink wrapper / helper versions: +Python 3.10 ___ Python tracker ___

[issue41134] distutils.dir_util.copy_tree FileExistsError when updating symlinks

2020-07-16 Thread Tom Hale
Change by Tom Hale : -- keywords: +patch pull_requests: +20651 stage: -> patch review pull_request: https://github.com/python/cpython/pull/14464 ___ Python tracker ___

[issue41134] distutils.dir_util.copy_tree FileExistsError when updating symlinks

2020-06-26 Thread Tom Hale
New submission from Tom Hale : Here is a minimal test case: == #!/bin/bash cd /tmp || exit 1 dir=test-copy_tree src=$dir/src dst=$dir/dst mkdir -p "$src" touch "$src"/file ln -s file "$src/symlink" python -c "from distutils.dir_util