[Cython] Cython 0.23 beta 1 released

2015-07-20 Thread Stefan Behnel
Hi everyone, I just uploaded a first beta for the upcoming Cython 0.23. There have been many major changes and fixes, so please give it some testing with your own code - especially on less commonly tested platforms, namely MS Windows. You can get the signed release from here: http://cython.org/r

Re: [Cython] Cython 0.23 beta 1 released

2015-07-20 Thread Jeroen Demeyer
Hello, The changelog should mention something about the very recent changes to "enum". Some bad code in Sage (a literal integer pretending to be an enum) needed to be fixed because of this change. Jeroen. ___ cython-devel mailing list cython-devel@p

[Cython] Non-type template parameters

2015-07-20 Thread Ian Henriksen
Hi all, I've spent a little time working on adding support for non-type template parameters. In doing this, it has been very easy to add support for doing something like the following: cdef extern from "add_const.hpp" nogil: int myfunc1[i](int) def test(): print myfunc1[2](a) The downside