Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Cython / tests / compile / specialfloatvals.pyx
Size: Mime:
# mode: compile

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()