Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GH-89727: Partially fix shutil.rmtree() recursion error on deep trees #119634

Merged
merged 7 commits into from
May 29, 2024

Commits on May 27, 2024

  1. pythonGH-89727: Partially fix shutil.rmtree() recursion error on de…

    …ep trees
    
    Make `shutil._rmtree_unsafe()` call `os.walk()`, which is implemented
    without recursion.
    
    `shutil._rmtree_safe_fd()` is not affected and can still raise a recursion
    error.
    barneygale committed May 27, 2024
    Configuration menu
    Copy the full SHA
    55adfeb View commit details
    Browse the repository at this point in the history
  2. Simplify diff

    barneygale committed May 27, 2024
    Configuration menu
    Copy the full SHA
    e5c8ceb View commit details
    Browse the repository at this point in the history

Commits on May 29, 2024

  1. Update Lib/shutil.py

    Co-authored-by: Jelle Zijlstra <jelle.zijlstra@gmail.com>
    barneygale and JelleZijlstra authored May 29, 2024
    Configuration menu
    Copy the full SHA
    96293a5 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    3b1b15e View commit details
    Browse the repository at this point in the history
  3. Add NEWS

    barneygale committed May 29, 2024
    Configuration menu
    Copy the full SHA
    4fe3075 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    857bcfa View commit details
    Browse the repository at this point in the history
  5. Update Misc/NEWS.d/next/Library/2024-05-29-20-42-17.gh-issue-89727.5l…

    …PTTW.rst
    
    Co-authored-by: Jelle Zijlstra <jelle.zijlstra@gmail.com>
    barneygale and JelleZijlstra authored May 29, 2024
    Configuration menu
    Copy the full SHA
    27ee6f0 View commit details
    Browse the repository at this point in the history