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

Test fixes for changes in recent upstream Python (#581) #582

Merged
merged 3 commits into from
Sep 27, 2024

Commits on Jun 14, 2024

  1. test_excepts: fudge changed indentation in Python 3.13

    Signed-off-by: Adam Williamson <[email protected]>
    AdamWill committed Jun 14, 2024
    Configuration menu
    Copy the full SHA
    b79a954 View commit details
    Browse the repository at this point in the history

Commits on Jun 15, 2024

  1. test_inspect_wrapped_property: handle fixed wrapper inspection

    Python upstream recently fixed the behavior of inspect with
    wrappers: python/cpython#112006 . The
    assertion here relies on the broken behavior, we only get None
    if `inspect(Wrapped)` fails and raises `ValueError`. Now it
    works, we actually get the correct answer, 1. This changes it so
    we assert the correct thing depending on the Python version (the
    fix was backported to 3.11.9 and 3.12.3, so the check has to be a
    bit complicated).
    
    Signed-off-by: Adam Williamson <[email protected]>
    AdamWill committed Jun 15, 2024
    Configuration menu
    Copy the full SHA
    832e81d View commit details
    Browse the repository at this point in the history

Commits on Sep 27, 2024

  1. Trigger CI

    jrbourbeau committed Sep 27, 2024
    Configuration menu
    Copy the full SHA
    6387b07 View commit details
    Browse the repository at this point in the history