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

1.11.2 backport bugfixes #17677

Merged
merged 4 commits into from
Aug 24, 2024

Commits on Aug 14, 2024

  1. Revert "Fix RawExpressionType.accept crash with `--cache-fine-grain…

    …ed`" (python#17637)
    
    Reverts python#17588
    
    (cherry picked from commit 41dcf1a)
    ilevkivskyi authored and md384 committed Aug 14, 2024
    Configuration menu
    Copy the full SHA
    8a2a42f View commit details
    Browse the repository at this point in the history
  2. Revert "Fix Literal strings containing pipe characters" (python#17638)

    Reverts python#17148
    
    (cherry picked from commit bc39f17)
    ilevkivskyi authored and md384 committed Aug 14, 2024
    Configuration menu
    Copy the full SHA
    214b1a2 View commit details
    Browse the repository at this point in the history
  3. Unwrap TypedDict item types before storing (python#17640)

    Fixes python#17604
    Fixes python#17608
    
    Fix is trivial, rectify an obvious omission in my original PR.
    
    (cherry picked from commit b56f357)
    ilevkivskyi authored and md384 committed Aug 14, 2024
    Configuration menu
    Copy the full SHA
    7a9bd7e View commit details
    Browse the repository at this point in the history
  4. An alternative fix for a union-like literal string (python#17639)

    It is unfortunate to add two extra slots to a common type (and I guess
    this is why it was rejected in the original PR), but all other
    alternatives I tried are hacky and/or dangerous. So, this is a price to
    pay for introducing a new type syntax.
    
    ---------
    
    Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
    (cherry picked from commit 3da16bd)
    ilevkivskyi authored and md384 committed Aug 14, 2024
    Configuration menu
    Copy the full SHA
    a3a8ec2 View commit details
    Browse the repository at this point in the history