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-104102: Optimize pathlib.Path.glob() handling of ../ pattern segments #104103

Merged
merged 4 commits into from
May 2, 2023

Commits on May 2, 2023

  1. Optimize pathlib.Path.glob() handling of ../ pattern segments

    These segments do not require a `stat()` call, as the selector's
    `_select_from()` method is called after we've established that the
    parent is a directory.
    barneygale committed May 2, 2023
    Configuration menu
    Copy the full SHA
    f268157 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    581e8c5 View commit details
    Browse the repository at this point in the history
  3. Fix argument name

    barneygale committed May 2, 2023
    Configuration menu
    Copy the full SHA
    e35153f View commit details
    Browse the repository at this point in the history
  4. Expand tests

    barneygale committed May 2, 2023
    Configuration menu
    Copy the full SHA
    6ab6f0f View commit details
    Browse the repository at this point in the history