Re: [Cython] Likely bug: compilation failure on aliased cimport + subclass interaction

2013-08-22 Thread Matěj Laitl
On 23. 8. 2013 Matěj Laitl wrote: > I'm attaching a more complete testcase which I'll also submit as a review > request for convenience. *cough*, really attaching the second time. Matěj>From fd318ca5dc2418ebdbc704d9d10321390644ccf8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C4=9Bj=20Lai

[Cython] Likely bug: compilation failure on aliased cimport + subclass interaction

2013-08-22 Thread Matěj Laitl
Hi, it seems that when I do: > cimport foo as f > > cdef class DerivedClass(f.BaseClass): > pass I get following compilation errors: > 3:5: 'BaseClass' is not declared > 3:5: 'f.pxd' not found which looks like a bug to me. When I use plain "cimport foo" + "foo.BaseClass" or "from foo cimport