I'm still using 0.17.1 (not much I can really do about it in the short
term). I just discovered a bug in some Cython code. I had naively
declared a couple local variables as float:
cdef float t = self._time
cdef float v
thinking that "float" was the same as Python's float (e.g., a C
double). That proved not to be the case. When I changed the
declarations to specify "double", things started working.
Looking in the Language Basics documentation:
http://docs.cython.org/src/userguide/language_basics.html
I saw no mention of the distinction between Python float and Cython
float. It seems like it should be mentioned somewhere. If so, the
searching I did turned nothing up.
Skip Montanaro