``Objects/typeobject.c``: Fix typo (#118126)

This commit is contained in:
Kirill Podoprigora 2024-04-21 05:25:39 +03:00 committed by GitHub
parent 1558d99316
commit 92c84ef831
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -5671,7 +5671,7 @@ type_clear(PyObject *self)
the dict, so that other objects caught in a reference cycle
don't start calling destroyed methods.
Otherwise, the we need to clear tp_mro, which is
Otherwise, we need to clear tp_mro, which is
part of a hard cycle (its first element is the class itself) that
won't be broken otherwise (it's a tuple and tuples don't have a
tp_clear handler).