[Python-checkins] r55090 - python/trunk/Objects/floatobject.c
neal.norwitz
python-checkins at python.org
Thu May 3 09:21:03 CEST 2007
Author: neal.norwitz
Date: Thu May 3 09:20:57 2007
New Revision: 55090
Modified:
python/trunk/Objects/floatobject.c
Log:
Remove dead code. This code couldn't be reached because earlier in
the function there is another check for z != Py_None.
Modified: python/trunk/Objects/floatobject.c
==============================================================================
--- python/trunk/Objects/floatobject.c (original)
+++ python/trunk/Objects/floatobject.c Thu May 3 09:20:57 2007
@@ -764,18 +764,7 @@
/* Sort out special cases here instead of relying on pow() */
if (iw == 0) { /* v**0 is 1, even 0**0 */
- PyFPE_START_PROTECT("pow", return NULL)
- if ((PyObject *)z != Py_None) {
- double iz;
- CONVERT_TO_DOUBLE(z, iz);
- ix = fmod(1.0, iz);
- if (ix != 0 && iz < 0)
- ix += iz;
- }
- else
- ix = 1.0;
- PyFPE_END_PROTECT(ix)
- return PyFloat_FromDouble(ix);
+ return PyFloat_FromDouble(1.0);
}
if (iv == 0.0) { /* 0**w is error if w<0, else 1 */
if (iw < 0.0) {
More information about the Python-checkins
mailing list