]> granicus.if.org Git - python/commitdiff
Repair typo in comment.
authorTim Peters <tim.peters@gmail.com>
Sun, 2 Sep 2001 18:35:54 +0000 (18:35 +0000)
committerTim Peters <tim.peters@gmail.com>
Sun, 2 Sep 2001 18:35:54 +0000 (18:35 +0000)
Objects/dictobject.c

index 91d2c536ab6bf74d7a93fed386ad7b756346153f..b98cccf036f8cb9af20943b77f107e2ecf6260e3 100644 (file)
@@ -1703,7 +1703,7 @@ dict_init(PyObject *self, PyObject *args, PyObject *kwds)
                return -1;
        if (arg != NULL) {
                if (PyDict_Merge(self, arg, 1) < 0) {
-                       /* An error like "AttibuteError: keys" is too
+                       /* An error like "AttributeError: keys" is too
                           cryptic in this context. */
                        if (PyErr_ExceptionMatches(PyExc_AttributeError)) {
                                PyErr_SetString(PyExc_TypeError,