]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
``Objects/typeobject.c``: Fix typo (#118126)
authorKirill Podoprigora <kirill.bast9@mail.ru>
Sun, 21 Apr 2024 02:25:39 +0000 (05:25 +0300)
committerGitHub <noreply@github.com>
Sun, 21 Apr 2024 02:25:39 +0000 (02:25 +0000)
Objects/typeobject.c

index 2f356388785665df75a6278742c7f9ceb02107d9..970c82d2a17ada6696f675747d8b07c3333ec67a 100644 (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).