From: Tim Peters Date: Thu, 10 May 2001 18:58:31 +0000 (+0000) Subject: Repair typo in comment. X-Git-Tag: v2.2a3~1834 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3918fb2549715723caaf42be1c4a3a3ed4e05dfb;p=thirdparty%2FPython%2Fcpython.git Repair typo in comment. --- diff --git a/Objects/dictobject.c b/Objects/dictobject.c index 3f77427aca56..b6991538ec48 100644 --- a/Objects/dictobject.c +++ b/Objects/dictobject.c @@ -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;