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

Improve compatibility with "nogil" Python and 3.11 #470

Merged
merged 7 commits into from May 20, 2022

Commits on May 18, 2022

  1. Improve compatibility with "nogil" Python and 3.11

    This makes a number of changes to improve compatibility with the
    "nogil" Python fork as well as the upcoming 3.11 release.
    
     - Fix _code_reduce for 3.11b0 and nogil Python
    
     - Use instr.argval in _walk_global_ops. This avoids adding a special
       case for 3.11+ (and is useful for nogil Python). In 3.11+, the argval
       for LOAD_GLOBAL would need to be divided by two to access the correct
       name. The 'argval' field already stores the correct name.
    
     - Set '__builtins__' before constructing de-pickled functions. (Useful
       for nogil Python)
    
     - Fix test_recursion_during_pickling in Python 3.11+. Objects now have
       a default `__getstate__` method so `__getattr__` was never called,
       but `__getattribute__` would still be called.
    colesbury committed May 18, 2022
    Configuration menu
    Copy the full SHA
    0cb1910 View commit details
    Browse the repository at this point in the history

Commits on May 20, 2022

  1. Configuration menu
    Copy the full SHA
    3e0d5fc View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    400dd9a View commit details
    Browse the repository at this point in the history
  3. Trigger CI

    ogrisel committed May 20, 2022
    Configuration menu
    Copy the full SHA
    f0cf0f7 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    5e91b4c View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    12c1b36 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    bb3c31b View commit details
    Browse the repository at this point in the history