Commit ed08ae5b authored by Stefan Behnel's avatar Stefan Behnel

extended test case

parent d15e57b7
......@@ -6,6 +6,8 @@ __doc__ = """
nan
>>> nan2()
nan
>>> float_nan
nan
>>> infp1()
inf
......@@ -15,6 +17,10 @@ __doc__ = """
inf
>>> infp2() == float('inf')
True
>>> float_infp
inf
>>> float_infp == float('inf')
True
>>> infn1()
-inf
......@@ -24,6 +30,10 @@ __doc__ = """
-inf
>>> infn2() == float('-inf')
True
>>> float_infn
-inf
>>> float_infn == float('-inf')
True
"""
DEF FLOAT = 12.5
......@@ -31,6 +41,10 @@ DEF FLOAT_NAN = float('nan')
DEF FLOAT_INFP = float('+inf')
DEF FLOAT_INFN = float('-inf')
float_nan = FLOAT_NAN
float_infp = FLOAT_INFP
float_infn = FLOAT_INFN
def f():
cdef float f
f = FLOAT
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment