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

Fix arithmetic stability issue #2817

Merged
merged 5 commits into from Jan 29, 2022

Commits on Jan 28, 2022

  1. Fix arithmetic stability issue

    It turns out "simple_stmt" isn't that simple: it can contain multiple
    statements separated by semicolons. Invisible parenthesis logic for
    arithmetic expressions only looked at the first child of simple_stmt.
    This causes instability in the presence of semicolons, since the next
    run through the statement following the semicolon will be the first
    child of another simple_stmt.
    
    I believe this along with psf#2572 fix the known stability issues.
    hauntsaninja committed Jan 28, 2022
    Copy the full SHA
    647542e View commit details
    Browse the repository at this point in the history
  2. changelog

    hauntsaninja committed Jan 28, 2022
    Copy the full SHA
    16cbced View commit details
    Browse the repository at this point in the history
  3. types

    hauntsaninja committed Jan 28, 2022
    Copy the full SHA
    ae71c47 View commit details
    Browse the repository at this point in the history
  4. Copy the full SHA
    69e10a8 View commit details
    Browse the repository at this point in the history

Commits on Jan 29, 2022

  1. Copy the full SHA
    81d2bc8 View commit details
    Browse the repository at this point in the history