Re: [Cython] strange error message

2016-01-05 Thread Baptiste Carvello
Le 31/12/2015 01:00, Robert Bradshaw a écrit : > On Mon, Dec 28, 2015 at 1:15 PM, Baptiste Carvello > wrote: >> Le 28/12/2015 17:12, Baptiste Carvello a écrit : >>> Hi, >>> >>> not a cython dev, but I believe I hit the very same problem (I'm going >>> on vacation now, full report in January). >>>

Re: [Cython] strange error message

2016-01-01 Thread B. Clausius
Am 31.12.2015 um 01:00 schrieb Robert Bradshaw: > On Mon, Dec 28, 2015 at 1:15 PM, Baptiste Carvello > wrote: >> Le 28/12/2015 17:12, Baptiste Carvello a écrit : >>> Hi, >>> >>> not a cython dev, but I believe I hit the very same problem (I'm going >>> on vacation now, full report in January). >>>

Re: [Cython] strange error message

2015-12-30 Thread Robert Bradshaw
On Mon, Dec 28, 2015 at 1:15 PM, Baptiste Carvello wrote: > Le 28/12/2015 17:12, Baptiste Carvello a écrit : >> Hi, >> >> not a cython dev, but I believe I hit the very same problem (I'm going >> on vacation now, full report in January). >> >> You may fix the compilation error by adding the follow

Re: [Cython] strange error message

2015-12-28 Thread Baptiste Carvello
Le 28/12/2015 17:12, Baptiste Carvello a écrit : > Hi, > > not a cython dev, but I believe I hit the very same problem (I'm going > on vacation now, full report in January). > > You may fix the compilation error by adding the following unused import: from gldraw import vec4 sorry, that's a

Re: [Cython] strange error message

2015-12-28 Thread Baptiste Carvello
Hi, not a cython dev, but I believe I hit the very same problem (I'm going on vacation now, full report in January). You may fix the compilation error by adding the following unused import: >>> from gldraw import vec4 Please tell me if it works for you, Baptiste Le 26/12/2015 11:59, B. Clausiu

[Cython] strange error message

2015-12-26 Thread B. Clausius
Hi cython devs, a strange error message, showing cython internals: $ cat gldraw.pxd ctypedef float vec4[4] ctypedef vec4 mat4[4] $ cat glarea.pyx cimport gldraw cdef struct Data: gldraw.mat4 matrix cdef Data data cdef void sync(): data.changed = True # <- this wrong line produces the