[issue39327] shutil.rmtree using vagrant synched folder fails

2022-02-21 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +Python 3.10, Python 3.11, Python 3.9 -Python 3.6 ___ Python tracker

[issue39327] shutil.rmtree using vagrant synched folder fails

2022-02-21 Thread miss-islington
miss-islington added the comment: New changeset 95d6271f1997580f8cb8a2985d0cd48af912763f by Miss Islington (bot) in branch '3.10': bpo-39327: Close file descriptors as soon as possible in shutil.rmtree (GH-31384)

[issue39327] shutil.rmtree using vagrant synched folder fails

2022-02-21 Thread miss-islington
miss-islington added the comment: New changeset 959846be52b03da57f50ebc07f99ec262a86e860 by Miss Islington (bot) in branch '3.9': bpo-39327: Close file descriptors as soon as possible in shutil.rmtree (GH-31384)

[issue39327] shutil.rmtree using vagrant synched folder fails

2022-02-20 Thread miss-islington
Change by miss-islington : -- pull_requests: +29580 pull_request: https://github.com/python/cpython/pull/31451 ___ Python tracker ___

[issue39327] shutil.rmtree using vagrant synched folder fails

2022-02-20 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 4.0 -> 5.0 pull_requests: +29579 pull_request: https://github.com/python/cpython/pull/31450 ___ Python tracker

[issue39327] shutil.rmtree using vagrant synched folder fails

2022-02-20 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset b77158b4da449ec5b8f682816a79d004fd65ed07 by Lital Natan in branch 'main': bpo-39327: Close file descriptors as soon as possible in shutil.rmtree (GH-31384) https://github.com/python/cpython/commit/b77158b4da449ec5b8f682816a79d004fd65ed07

[issue39327] shutil.rmtree using vagrant synched folder fails

2022-02-17 Thread Roundup Robot
Change by Roundup Robot : -- keywords: +patch nosy: +python-dev nosy_count: 2.0 -> 3.0 pull_requests: +29532 stage: -> patch review pull_request: https://github.com/python/cpython/pull/31384 ___ Python tracker

[issue39327] shutil.rmtree using vagrant synched folder fails

2021-12-09 Thread Lasse Kantola
Lasse Kantola added the comment: I have encountered the same problem with vboxsf mounted folders when using Debian guest on VirtualBox 6.1 hosted by Windows 10. The general VirtualBox issue of vboxsf not supporting rmdir when there are open file descriptors is difficult to solve, and out of

[issue39327] shutil.rmtree using vagrant synched folder fails

2020-01-14 Thread Peter Liedholm
Peter Liedholm added the comment: Problem is also reported in virtualbox https://www.virtualbox.org/ticket/19004 >From that ticket some more analysis is done; strace reveals that Python has kept an open fd for the directory being removed. -- ___

[issue39327] shutil.rmtree using vagrant synched folder fails

2020-01-14 Thread Peter Liedholm
New submission from Peter Liedholm : Python 3.6.9 Ubuntu 18.04 python3 -c 'import shutil; shutil.rmtree("1a")' Traceback (most recent call last): File "", line 1, in File "/usr/lib/python3.6/shutil.py", line 486, in rmtree _rmtree_safe_fd(fd, path, onerror) File