and another one

This commit is contained in:
Christian Heimes 2012-10-06 17:16:39 +02:00
parent d3df2060a6
commit b70e8a1958
1 changed files with 2 additions and 2 deletions

View File

@ -78,7 +78,7 @@ _PyObject_HasLen(PyObject *o) {
Py_ssize_t Py_ssize_t
PyObject_LengthHint(PyObject *o, Py_ssize_t defaultvalue) PyObject_LengthHint(PyObject *o, Py_ssize_t defaultvalue)
{ {
PyObject *hint; PyObject *hint, *result;
Py_ssize_t res; Py_ssize_t res;
_Py_IDENTIFIER(__length_hint__); _Py_IDENTIFIER(__length_hint__);
res = PyObject_Length(o); res = PyObject_Length(o);
@ -98,7 +98,7 @@ PyObject_LengthHint(PyObject *o, Py_ssize_t defaultvalue)
} }
return defaultvalue; return defaultvalue;
} }
PyObject *result = PyObject_CallFunctionObjArgs(hint, NULL); result = PyObject_CallFunctionObjArgs(hint, NULL);
Py_DECREF(hint); Py_DECREF(hint);
if (result == NULL) { if (result == NULL) {
if (PyErr_ExceptionMatches(PyExc_TypeError)) { if (PyErr_ExceptionMatches(PyExc_TypeError)) {