The Wayback Machine - https://web.archive.org/web/20221223144513/https://github.com/python/cpython/pull/99803/commits
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: Fix os.walk RecursionError on deep trees #99803

Merged
merged 16 commits into from Dec 19, 2022

Commits on Dec 15, 2022

  1. pythongh-89727: Fix os.walk RecursionError on deep trees

    Use a stack to implement os.walk iteratively instead of recursively to
    avoid hitting recursion limits on deeply nested trees.
    jonburdo committed Dec 15, 2022

Commits on Dec 19, 2022