Hi everybody,
as you surely have guessed from the amount of Bug reports I have
recently submitted to this mailing list, I'm currently working on a
rather large Cython project.
More precisely: I'm using Cython as the glue layer between the Python
and C++ components of openage; an overview and sourc
Hi,
it seems to be impossible to use anything but a single word as a
template type for functions.
Classes don't suffer from this issue, as seen below.
As a workaround, complex types can be ctypedef-d to a single word (also
seen below).
$ cat t10.pyx
cdef extern from "nope.h":
cdef cppclass
Hi,
another bug report:
mic@mic /tmp $ cat t11.pyx
cdef cppclass foo:
pass
def test():
foo()
mic@mic /tmp $ cython --cplus t11.pyx
Error compiling Cython file:
...
cdef cppclass foo:
pass
def test():
foo()
^