1. 10 Apr, 2012 2 commits
  2. 13 Apr, 2012 1 commit
  3. 12 Apr, 2012 1 commit
  4. 11 Apr, 2012 2 commits
  5. 10 Apr, 2012 7 commits
  6. 31 Mar, 2012 8 commits
  7. 30 Mar, 2012 2 commits
  8. 29 Mar, 2012 2 commits
  9. 28 Mar, 2012 1 commit
  10. 27 Mar, 2012 4 commits
  11. 26 Mar, 2012 3 commits
  12. 24 Mar, 2012 1 commit
  13. 23 Mar, 2012 2 commits
  14. 22 Mar, 2012 3 commits
  15. 21 Mar, 2012 1 commit
    • Dag Sverre Seljebotn's avatar
      Stopgap support for numpy 1.7 · 95b6e693
      Dag Sverre Seljebotn authored
      NumPy is starting to seriously deprecating access to the member fields
      in an ndarray (it was always frowned upon, but now it is starting to
      become enforced). To support the large body of Cython code out there
      accessing these fields (arr.shape[0] and so on), we special-case
      PyArrayObject in Cython, with special knowledge of the NumPy API.
      
      Ideally, we may introduce features in Cython in the future that allows
      specifying this kind of magic with syntax in pxd files, and then we can
      move away from special-casing NumPy.
      95b6e693