Skip to content

Speed up pathlib.Path.glob() by working with strings internally #117586

Closed
@barneygale

Description

@barneygale

pathlib.Path.glob() currently generates Path objects for intermediate paths that might never be yielded to the user, which is slow and unnecessary. For example, a pattern like **/*.mp3 is evaluated by creating a Path object for every directory visited.

There are already few tricks employed to avoid instantiation, but it would be better if only real results were converted to path objects.

Linked PRs

Metadata

Metadata

Assignees

No one assigned

    Labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions