Fix typo in exception message

This commit is contained in:
Neal Norwitz 2002-06-13 21:25:17 +00:00
parent 0c2c17c473
commit 20e72130c4

View file

@ -5132,7 +5132,7 @@ unicode_buffer_getwritebuf(PyUnicodeObject *self, int index,
const void **ptr)
{
PyErr_SetString(PyExc_TypeError,
"cannot use unicode as modifyable buffer");
"cannot use unicode as modifiable buffer");
return -1;
}