summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Objects/abstract.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/abstract.c b/Objects/abstract.c
index 36c1608..7e246db 100644
--- a/Objects/abstract.c
+++ b/Objects/abstract.c
@@ -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;
}