mirror of
https://github.com/python/cpython.git
synced 2024-11-29 04:44:13 +08:00
Cosmetic: code under "else" clause was missing indent.
This commit is contained in:
parent
96d7a70630
commit
5acbfcc164
@ -1052,7 +1052,7 @@ PyObject_GetAttr(PyObject *v, PyObject *name)
|
||||
if (v->ob_type->tp_getattro != NULL)
|
||||
return (*v->ob_type->tp_getattro)(v, name);
|
||||
else
|
||||
return PyObject_GetAttrString(v, PyString_AS_STRING(name));
|
||||
return PyObject_GetAttrString(v, PyString_AS_STRING(name));
|
||||
}
|
||||
|
||||
int
|
||||
|
Loading…
Reference in New Issue
Block a user