From: Neal Norwitz Date: Thu, 13 Jun 2002 21:25:17 +0000 (+0000) Subject: Fix typo in exception message X-Git-Tag: v2.3c1~5330 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=20e72130c4054bb59aa3fe514522065003b0ed89;p=python Fix typo in exception message --- diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c index cd081ada67..ae27b7faa3 100644 --- a/Objects/unicodeobject.c +++ b/Objects/unicodeobject.c @@ -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; }