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-122288: Improve performances of fnmatch.translate #122289

Open
wants to merge 17 commits into
base: main
Choose a base branch
from

Commits on Jul 25, 2024

  1. Configuration menu
    Copy the full SHA
    7f15063 View commit details
    Browse the repository at this point in the history
  2. add tests

    picnixz committed Jul 25, 2024
    Configuration menu
    Copy the full SHA
    83d0904 View commit details
    Browse the repository at this point in the history
  3. blurb

    picnixz committed Jul 25, 2024
    Configuration menu
    Copy the full SHA
    275a1c7 View commit details
    Browse the repository at this point in the history
  4. fix usages

    picnixz committed Jul 25, 2024
    Configuration menu
    Copy the full SHA
    e60d057 View commit details
    Browse the repository at this point in the history
  5. keep legacy version for glob

    picnixz committed Jul 25, 2024
    Configuration menu
    Copy the full SHA
    03217d7 View commit details
    Browse the repository at this point in the history
  6. actually not needed...

    picnixz committed Jul 25, 2024
    Configuration menu
    Copy the full SHA
    804da13 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    06a3652 View commit details
    Browse the repository at this point in the history

Commits on Aug 17, 2024

  1. Configuration menu
    Copy the full SHA
    baa6ce3 View commit details
    Browse the repository at this point in the history

Commits on Aug 18, 2024

  1. micro-optimization on re.sub

    picnixz committed Aug 18, 2024
    Configuration menu
    Copy the full SHA
    80b22e0 View commit details
    Browse the repository at this point in the history

Commits on Aug 19, 2024

  1. address Barney's review

    picnixz committed Aug 19, 2024
    Configuration menu
    Copy the full SHA
    7a9a87c View commit details
    Browse the repository at this point in the history

Commits on Aug 23, 2024

  1. Configuration menu
    Copy the full SHA
    90539bc View commit details
    Browse the repository at this point in the history

Commits on Aug 27, 2024

  1. Configuration menu
    Copy the full SHA
    1d52949 View commit details
    Browse the repository at this point in the history

Commits on Aug 28, 2024

  1. Configuration menu
    Copy the full SHA
    0226437 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    01a5173 View commit details
    Browse the repository at this point in the history
  3. change the cache size for re.escape

    The rationale for this change is as follows:
    
    re.escape() is only used to cache single Unicode characters
    in shell patterns; we may heuristically assume that they are
    ISO-8859-1 encodable, thereby requiring a cache of size 256.
    To allow non-traditional glyphs (or alphabets with a small
    number of common glyphs), we double the cache size.
    picnixz committed Aug 28, 2024
    Configuration menu
    Copy the full SHA
    bb6c3ee View commit details
    Browse the repository at this point in the history

Commits on Oct 18, 2024

  1. Update Lib/fnmatch.py

    Co-authored-by: Barney Gale <[email protected]>
    picnixz and barneygale authored Oct 18, 2024
    Configuration menu
    Copy the full SHA
    c14ce4f View commit details
    Browse the repository at this point in the history

Commits on Oct 22, 2024

  1. Configuration menu
    Copy the full SHA
    38d3427 View commit details
    Browse the repository at this point in the history