specialfloatvals.pyx 161 Bytes EditWeb IDE 1 2 3 4 5 6 7 8 9 10 11 DEF nan = float('nan') DEF inf = float('inf') DEF minf = -float('inf') cdef int f() except -1: cdef float x, y, z x = nan y = inf z = minf f()