Commit b95ec09a authored by Tim Peters's avatar Tim Peters

Repair typo in comment.

parent 13b54a9d
......@@ -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,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment