1. 15 May, 2011 4 commits
  2. 14 May, 2011 11 commits
  3. 13 May, 2011 9 commits
  4. 10 May, 2011 3 commits
  5. 09 May, 2011 1 commit
  6. 07 May, 2011 1 commit
  7. 06 May, 2011 5 commits
  8. 05 May, 2011 6 commits
    • Stefan Behnel's avatar
      include Demos/benchmarks/* in sdist · 109185f0
      Stefan Behnel authored
      109185f0
    • Stefan Behnel's avatar
      1df4d4ea
    • Stefan Behnel's avatar
      minor cleanup in test runner · 160b8594
      Stefan Behnel authored
      --HG--
      extra : rebase_source : aca82bcaf6b2e80519f6ed0073ce7164385e5a5c
      160b8594
    • Nathaniel J. Smith's avatar
      Clean up the declaration of constants in numpy.pxd. · 4f34c911
      Nathaniel J. Smith authored
      There are a large number of constants declared with 'cdef enum' in
      numpy.pxd. Most of them did not correctly match the definitions in the
      numpy headers -- either because of a missing 'ctypedef', or because
      numpy.pxd claimed that they were of a named enum type ('enum
      requirements') which did not actually exist.
      
      Somewhere between Cython 0.12.1 and 0.14.1, the latter issue broke my
      compile whenever I referred to np.NPY_F_CONTIGUOUS. Cython started
      generating code like:
        enum requirements __pyx_t_10 = NPY_F_CONTIGUOUS;
        PyArray_NewFromDescr(..., __pyx_t_10, ....);
      Since there is, in fact, no such thing as 'enum requirements', the C
      compiler objected. (In earlier version, no temporary variable was
      generated, so we got away with the incorrect declaration.)
      
      And since I had to fix the declaration of this particular enum, I
      figured I might as well double-check the rest as well, in case of
      similar problems arising in the future.
      
      With this patch, Cython can once again compile scikits.sparse v0.1.
      4f34c911
    • scoder's avatar
      Merge pull request #29 from vitek/unreachable_code · 760bdc3c
      scoder authored
      Unreachable code removal
      760bdc3c
    • Dag Sverre Seljebotn's avatar
      a6ec5007