1. 02 Nov, 2021 6 commits
  2. 31 Oct, 2021 4 commits
  3. 29 Oct, 2021 1 commit
  4. 28 Oct, 2021 2 commits
  5. 25 Oct, 2021 3 commits
  6. 24 Oct, 2021 3 commits
    • da-woods's avatar
      Initial support for Python 3.11 (GH-4414) · 9d1ffd5d
      da-woods authored
      * Add a basic replacement for PyCode_New().
      
      An optimized versions would be nice, but this is intended to work sufficiently to start testing. Also, CPython 3.11 might actually add a new C-API function to simplify setting the current code position. That might be used instead.
      
      * Disable introspection of frame object with vectorcall
      
      This feature looked to only be used for early Python versions that don't have the full vectorcall protocol (and the contents of the frame object are changed in Python 3.11).
      9d1ffd5d
    • Stefan Behnel's avatar
      Make sure that version dependent special methods are correctly and completely... · 346c81fe
      Stefan Behnel authored
      Make sure that version dependent special methods are correctly and completely excluded via preprocessor guards.
      Previously, implementing "__div__" could fail in Py3 (if the code for adapting the Python wrapper was generated) or would at least generate C compiler warnings about unused "__div__" C functions.
      346c81fe
    • Stefan Behnel's avatar
      Add Py3.10 as CI test target. · 3748c3cd
      Stefan Behnel authored
      3748c3cd
  7. 23 Oct, 2021 1 commit
  8. 22 Oct, 2021 3 commits
  9. 21 Oct, 2021 2 commits
  10. 20 Oct, 2021 1 commit
  11. 18 Oct, 2021 6 commits
  12. 17 Oct, 2021 2 commits
    • da-woods's avatar
      Fix fused cpdef default arguments (GH-4413) · f6eeeda5
      da-woods authored
      A couple of things were going wrong:
      * they're creating CloneNodes (but not requiring the contents of the clone of the clone node to be temp)
      * assignment from a clone node generates cleanup code (which is against the general rules of a clone node), and also loses a reference via giveref
      * cpdef functions cause a small memory leak (#4412) by assigning to their constants twice. This is unfortunately difficult to test for. With this patch we no longer leak, but still duplicate a little bit of work.
      f6eeeda5
    • da-woods's avatar
      Import TextTestResult in test runner instead of _TextTestResult (GH-4415) · a0571a69
      da-woods authored
      All the versions we currently test are new enough that the alias is no longer necessary.
      a0571a69
  13. 15 Oct, 2021 1 commit
  14. 07 Oct, 2021 1 commit
  15. 06 Oct, 2021 1 commit
  16. 02 Oct, 2021 1 commit
  17. 01 Oct, 2021 2 commits