mirror of https://github.com/python/cpython
move var declaration to top of block to fix compilation on Windows, fixes a7ec0a1b0f7c
This commit is contained in:
parent
2649105cdd
commit
6314d164c9
|
@ -78,8 +78,10 @@ _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;
|
||||||
|
Py_ssize_t res;
|
||||||
_Py_IDENTIFIER(__length_hint__);
|
_Py_IDENTIFIER(__length_hint__);
|
||||||
Py_ssize_t res = PyObject_Length(o);
|
res = PyObject_Length(o);
|
||||||
if (res < 0 && PyErr_Occurred()) {
|
if (res < 0 && PyErr_Occurred()) {
|
||||||
if (!PyErr_ExceptionMatches(PyExc_TypeError)) {
|
if (!PyErr_ExceptionMatches(PyExc_TypeError)) {
|
||||||
return -1;
|
return -1;
|
||||||
|
@ -89,7 +91,7 @@ PyObject_LengthHint(PyObject *o, Py_ssize_t defaultvalue)
|
||||||
else {
|
else {
|
||||||
return res;
|
return res;
|
||||||
}
|
}
|
||||||
PyObject *hint = _PyObject_LookupSpecial(o, &PyId___length_hint__);
|
hint = _PyObject_LookupSpecial(o, &PyId___length_hint__);
|
||||||
if (hint == NULL) {
|
if (hint == NULL) {
|
||||||
if (PyErr_Occurred()) {
|
if (PyErr_Occurred()) {
|
||||||
return -1;
|
return -1;
|
||||||
|
|
Loading…
Reference in New Issue