1. 17 Aug, 2020 22 commits
  2. 31 Jul, 2020 1 commit
  3. 29 Jul, 2020 4 commits
  4. 25 Jul, 2020 4 commits
  5. 22 Jul, 2020 3 commits
  6. 20 Jul, 2020 1 commit
    • da-woods's avatar
      Handle `for x in cpp_function_call()` (GH-3667) · 9cb557c3
      da-woods authored
      Fixes https://github.com/cython/cython/issues/3663
      
      This ensures that rvalues here are saved as temps, while keeping the
      existing behaviour for `for x in deref(vec)`, where the pointer for vec
      is copied, meaning it doesn't crash if vec is reassigned.
      
      The bit of this change liable to have the biggest effect is that I've
      changed the result type of dereference(x) and x[0] (where x is a c++
      type) to a reference rather than value type. I think this is OK because
      it matches what C++ does. If that isn't a sensible change then I can
      probably inspect the loop sequence more closely to try to detect this.
      9cb557c3
  7. 10 Jul, 2020 2 commits
  8. 09 Jul, 2020 3 commits