From: Guido van Rossum Date: Mon, 29 Jan 2001 23:50:25 +0000 (+0000) Subject: Rename dubiously named local variable 'cmpfunc' -- this is also a X-Git-Tag: v2.1a2~80 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3202c6fac875615efae017c6f6219a498f6fc90e;p=python Rename dubiously named local variable 'cmpfunc' -- this is also a typedef, and at least one compiler choked on this. (SF patch #103457, by bquinlan) --- diff --git a/Objects/classobject.c b/Objects/classobject.c index ed79da5031..218e0311e8 100644 --- a/Objects/classobject.c +++ b/Objects/classobject.c @@ -1409,7 +1409,7 @@ half_cmp(PyObject *v, PyObject *w) { static PyObject *cmp_obj; PyObject *args; - PyObject *cmpfunc; + PyObject *cmp_func; PyObject *result; long l; @@ -1421,8 +1421,8 @@ half_cmp(PyObject *v, PyObject *w) return -2; } - cmpfunc = PyObject_GetAttr(v, cmp_obj); - if (cmpfunc == NULL) { + cmp_func = PyObject_GetAttr(v, cmp_obj); + if (cmp_func == NULL) { PyErr_Clear(); return 2; } @@ -1431,9 +1431,9 @@ half_cmp(PyObject *v, PyObject *w) if (args == NULL) return -2; - result = PyEval_CallObject(cmpfunc, args); + result = PyEval_CallObject(cmp_func, args); Py_DECREF(args); - Py_DECREF(cmpfunc); + Py_DECREF(cmp_func); if (result == NULL) return -2;