mirror of
https://github.com/python/cpython.git
synced 2026-01-04 14:32:21 +00:00
Cosmetic: code under "else" clause was missing indent.
This commit is contained in:
parent
96d7a70630
commit
5acbfcc164
1 changed files with 1 additions and 1 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue