On 31 March 2012 10:14, Stefan Behnel <stefan_ml@behnel.de> wrote:
mark florisson, 30.03.2012 19:24:
The release build looks good now, I'm thinking of pushing a second and final beta out there tomorrow. If anyone wants to get something in, now is the time to raise voice.
Note that Dag's NumPy specialisation broke the Sage build by introducing a compiler crash.
https://sage.math.washington.edu:8091/hudson/view/cython-devel/job/sage-buil...
The problem is that the new code is already triggered during type inference (i.e. before type analysis) and then crashes the compiler because it accesses types that are not known yet.
Stefan _______________________________________________ cython-devel mailing list cython-devel@python.org http://mail.python.org/mailman/listinfo/cython-devel
Thanks for pointing that out Stefan. It would probably work if it passed in 'obj_type' to the numpy_transform_attribute_node, and used that instead of node.type. Alternatively, it could just wait until the type is set through analyse_expressions.