]> granicus.if.org Git - python/commitdiff
should use macro'ed symbols not direct
authorAndrew MacIntyre <andymac@bullseye.apana.org.au>
Mon, 22 Sep 2008 14:10:54 +0000 (14:10 +0000)
committerAndrew MacIntyre <andymac@bullseye.apana.org.au>
Mon, 22 Sep 2008 14:10:54 +0000 (14:10 +0000)
Part of source_os2emx.patch in issue 3868
Reviewed by Amaury Forgeot d'Arc

Objects/floatobject.c

index cb388009b4526d58119c8c196bc9752958eae8a2..2faff34cc3c7ee339621c4ceb4b229882f4231fa 100644 (file)
@@ -1339,12 +1339,12 @@ float_fromhex(PyObject *cls, PyObject *arg)
                s++;
 
        /* infinities and nans */
-       if (PyOS_mystrnicmp(s, "nan", 4) == 0) {
+       if (PyOS_strnicmp(s, "nan", 4) == 0) {
                x = Py_NAN;
                goto finished;
        }
-       if (PyOS_mystrnicmp(s, "inf", 4) == 0 ||
-           PyOS_mystrnicmp(s, "infinity", 9) == 0) {
+       if (PyOS_strnicmp(s, "inf", 4) == 0 ||
+           PyOS_strnicmp(s, "infinity", 9) == 0) {
                x = sign*Py_HUGE_VAL;
                goto finished;
        }