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: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=20e72130c4054bb59aa3fe514522065003b0ed89;p=thirdparty%2FPython%2Fcpython.git Fix typo in exception message --- diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c index cd081ada675b..ae27b7faa30b 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; }