Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
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
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
66f2623f
Commit
66f2623f
authored
Dec 04, 2010
by
Mark Dickinson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove some unecessary '#ifdef Py_NAN's from floatobject.c
parent
24bcc61f
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
6 deletions
+0
-6
Objects/floatobject.c
Objects/floatobject.c
+0
-6
No files found.
Objects/floatobject.c
View file @
66f2623f
...
...
@@ -575,13 +575,11 @@ float_div(PyObject *v, PyObject *w)
double
a
,
b
;
CONVERT_TO_DOUBLE
(
v
,
a
);
CONVERT_TO_DOUBLE
(
w
,
b
);
#ifdef Py_NAN
if
(
b
==
0
.
0
)
{
PyErr_SetString
(
PyExc_ZeroDivisionError
,
"float division by zero"
);
return
NULL
;
}
#endif
PyFPE_START_PROTECT
(
"divide"
,
return
0
)
a
=
a
/
b
;
PyFPE_END_PROTECT
(
a
)
...
...
@@ -595,13 +593,11 @@ float_rem(PyObject *v, PyObject *w)
double
mod
;
CONVERT_TO_DOUBLE
(
v
,
vx
);
CONVERT_TO_DOUBLE
(
w
,
wx
);
#ifdef Py_NAN
if
(
wx
==
0
.
0
)
{
PyErr_SetString
(
PyExc_ZeroDivisionError
,
"float modulo"
);
return
NULL
;
}
#endif
PyFPE_START_PROTECT
(
"modulo"
,
return
0
)
mod
=
fmod
(
vx
,
wx
);
/* note: checking mod*wx < 0 is incorrect -- underflows to
...
...
@@ -1492,13 +1488,11 @@ float_as_integer_ratio(PyObject *v, PyObject *unused)
"Cannot pass infinity to float.as_integer_ratio."
);
return
NULL
;
}
#ifdef Py_NAN
if
(
Py_IS_NAN
(
self
))
{
PyErr_SetString
(
PyExc_ValueError
,
"Cannot pass NaN to float.as_integer_ratio."
);
return
NULL
;
}
#endif
PyFPE_START_PROTECT
(
"as_integer_ratio"
,
goto
error
);
float_part
=
frexp
(
self
,
&
exponent
);
/* self == float_part * 2**exponent exactly */
...
...
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