diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2002-06-13 21:25:17 +0000 |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2002-06-13 21:25:17 +0000 |
commit | 20e72130c4054bb59aa3fe514522065003b0ed89 (patch) | |
tree | 594280e97c329946d3ef04bdb05453073a8550c4 /Objects/unicodeobject.c | |
parent | 0c2c17c4730cbb7c58b16d2890c7f9ef1fe7e7a9 (diff) | |
download | cpython-git-20e72130c4054bb59aa3fe514522065003b0ed89.tar.gz |
Fix typo in exception message
Diffstat (limited to 'Objects/unicodeobject.c')
-rw-r--r-- | Objects/unicodeobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |