Skip to content

Commit 91aa490

Browse files
authored
Update Objects/typeobject.c
1 parent f6c3704 commit 91aa490

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Objects/typeobject.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8259,7 +8259,7 @@ _Py_slot_tp_getattr_hook(PyObject *self, PyObject *name)
82598259
((PyWrapperDescrObject *)getattribute)->d_wrapped ==
82608260
(void *)PyObject_GenericGetAttr)) {
82618261
res = _PyObject_GenericGetAttrWithDict(self, name, NULL, 1);
8262-
/* if no error has occured, then it must be suppressed by us */
8262+
/* if no error has occurred, then it must be suppressed by us */
82638263
if (res == NULL && !PyErr_Occurred()) {
82648264
res = call_attribute(self, getattr, name);
82658265
}

0 commit comments

Comments
 (0)