[Cython] bug when using the built-in fused type cython.numeric

2012-05-23 Thread Jonathan De Wachter
It must probably be a known bug since the minimal code that reproduces this bug can be anything using the built-in type cython.numeric. cimport cython cdef class Foo: cdef cython.numeric bar Cython version: 0.16 (last release) I didn't find this bug in the bug trackers that's why I'm maili

[Cython] Generate headers in a given directory ?

2013-01-08 Thread Jonathan De Wachter
Is there a way to tell Cython to generate headers (*_api.h, *.h) in a given directory ? For example, my project structure is as follow: myproject/ --include/ --src/ And I'd like my extensions located in src/ to generate their headers in include/. myproject/ --include/ - mymodule