Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cython
Commits
ed08ae5b
Commit
ed08ae5b
authored
Apr 25, 2008
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
extended test case
parent
d15e57b7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
0 deletions
+14
-0
tests/run/specialfloat.pyx
tests/run/specialfloat.pyx
+14
-0
No files found.
tests/run/specialfloat.pyx
View file @
ed08ae5b
...
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment