Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 09ac89a

Browse files
committed
fix indentation glitch
1 parent 2d339f9 commit 09ac89a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Objects/classobject.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -626,7 +626,7 @@ instance_getattr2(register PyInstanceObject *inst, PyObject *name)
626626
if (class != NULL) {
627627
if (PyFunction_Check(v)) {
628628
PyObject *w = PyMethod_New(v, (PyObject *)inst,
629-
(PyObject *)class);
629+
(PyObject *)class);
630630
Py_DECREF(v);
631631
v = w;
632632
}

0 commit comments

Comments
 (0)