]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Repair typo in comment.
authorTim Peters <tim.peters@gmail.com>
Thu, 10 May 2001 18:58:31 +0000 (18:58 +0000)
committerTim Peters <tim.peters@gmail.com>
Thu, 10 May 2001 18:58:31 +0000 (18:58 +0000)
Objects/dictobject.c

index 3f77427aca56ac449574a0d6ac5d8619bd64dd91..b6991538ec48a93da456415943393ec4328ea3e5 100644 (file)
@@ -1077,7 +1077,7 @@ dict_compare(dictobject *a, dictobject *b)
        adiff = characterize(a, b, &aval);
        if (adiff == NULL) {
                assert(!aval);
-               /* Either an error, or a is a subst with the same length so
+               /* Either an error, or a is a subset with the same length so
                 * must be equal.
                 */
                res = PyErr_Occurred() ? -1 : 0;