1. 08 Oct, 2020 3 commits
  2. 06 Oct, 2020 1 commit
  3. 13 Sep, 2020 3 commits
  4. 04 Sep, 2020 2 commits
  5. 02 Aug, 2020 1 commit
  6. 10 Jul, 2020 1 commit
  7. 08 Jul, 2020 3 commits
  8. 07 Jul, 2020 9 commits
  9. 06 Jul, 2020 3 commits
  10. 05 Jul, 2020 1 commit
  11. 01 Jul, 2020 3 commits
    • scoder's avatar
      Validate and fix temp releasing (GH-3708) (GH-3717) · 195aeadc
      scoder authored
      * Validate and fix temp releasing (GH-3708)
      Backports 92147baf.
      
          * Fix a temp leak in the type init code.
          * Fix temp leaks in fused types initialisation code.
          * Correctly release the buffer index temps allocated for index calculations.
          * Make tests fails hard if a temp variable is not released at the end of a generated function.
          * Fix temp leak in switch statement code.
          * Make end-to-end tests fail on refnanny output.
          * Fix result temp leak in PyTypeTestNode.
          * Fix result temp leak in external type/function import code and enable the refnanny check for them.
          * Fix temp leak when try-return-finally is used in generators.
          * Make it explicit when an allocated temp is not meant to be reused.
          * Fix temp leak when assigning to the real/imag attributes of complex numbers.
          * Fix temp leak when assigning to a memoryview slice.
          * Clean up "num_threads" result temp in parallel section, not only in prange loop.
          * Fix temp leak in Pythran buffer setitem code.
          * Simplify NumPyMethodCallNode since it does not need the Python function anymore. Previously, it generated code that needlessly looked up the Python function without actually using it.
          * Fix temp leak when deleting C++ objects.
          * Add a test that actually reusing temps when deleting C++ objects works correctly.
      195aeadc
    • Stefan Behnel's avatar
    • Stefan Behnel's avatar
  12. 30 Jun, 2020 3 commits
  13. 29 Jun, 2020 1 commit
  14. 20 Jun, 2020 1 commit
  15. 19 Jun, 2020 3 commits
  16. 17 Jun, 2020 2 commits
    • Stefan Behnel's avatar
      Update changelog. · bba78fb8
      Stefan Behnel authored
      bba78fb8
    • Michał Górny's avatar
      Always bind Cython functions in Py3 (GH-3683) · df1a9984
      Michał Górny authored
      Rebased 1bb26b96 for cython 0.29.x,
      and made conditional to Python 3.  This does not solve the original staticmethod problem
      in Python 2 but it does resolve classmethod problems in Python 3.9.  Therefore, it unbreaks
      other packages on Python 3.9, improves overall state for Python 3 and does not introduce
      regressions in Python 2.
      df1a9984