Just tested in Win32 with MSVC, a few warnings here and there, mosty related to loss of precision on numeric conversions (eg. int <-> float)
However, two things to point out: 1) tests\compile\cstructreturn.pyx is clearly wrong code, and the compiler warned about uninitialized return. This makes me think that perhaps Cython should at least emit a warning if in a cdef function with explicit return type you never "return something"... Should I fix the test to silent the warning? 2) refnany + profile code fails to compile, because the refnnany setup code in functions should be emmited BEFORE the trace call (in order to do not mix variable declarations and code)... If any of you have a few minutes to fix this, It would be great. -- Lisandro Dalcín --------------- Centro Internacional de Métodos Computacionales en Ingeniería (CIMEC) Instituto de Desarrollo Tecnológico para la Industria Química (INTEC) Consejo Nacional de Investigaciones Científicas y Técnicas (CONICET) PTLC - Güemes 3450, (3000) Santa Fe, Argentina Tel/Fax: +54-(0)342-451.1594 _______________________________________________ Cython-dev mailing list [email protected] http://codespeak.net/mailman/listinfo/cython-dev
