Kaydet (Commit) 6314d164 authored tarafından Christian Heimes's avatar Christian Heimes

move var declaration to top of block to fix compilation on Windows, fixes a7ec0a1b0f7c

üst 2649105c
......@@ -78,8 +78,10 @@ _PyObject_HasLen(PyObject *o) {
Py_ssize_t
PyObject_LengthHint(PyObject *o, Py_ssize_t defaultvalue)
{
PyObject *hint;
Py_ssize_t res;
_Py_IDENTIFIER(__length_hint__);
Py_ssize_t res = PyObject_Length(o);
res = PyObject_Length(o);
if (res < 0 && PyErr_Occurred()) {
if (!PyErr_ExceptionMatches(PyExc_TypeError)) {
return -1;
......@@ -89,7 +91,7 @@ PyObject_LengthHint(PyObject *o, Py_ssize_t defaultvalue)
else {
return res;
}
PyObject *hint = _PyObject_LookupSpecial(o, &PyId___length_hint__);
hint = _PyObject_LookupSpecial(o, &PyId___length_hint__);
if (hint == NULL) {
if (PyErr_Occurred()) {
return -1;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment