Kaydet (Commit) 98779e0e authored tarafından Raymond Hettinger's avatar Raymond Hettinger

Fix Greg Ward's error message nit: PyObject_SetItem and PySequenceSetItem

had slightly different error messages.
üst 9c7ed4c6
......@@ -1252,7 +1252,7 @@ PySequence_SetItem(PyObject *s, int i, PyObject *o)
return m->sq_ass_item(s, i, o);
}
type_error("object doesn't support item assignment");
type_error("object does not support item assignment");
return -1;
}
......
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