diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2002-06-13 21:25:17 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2002-06-13 21:25:17 (GMT) |
commit | 20e72130c4054bb59aa3fe514522065003b0ed89 (patch) | |
tree | 594280e97c329946d3ef04bdb05453073a8550c4 /Objects | |
parent | 0c2c17c4730cbb7c58b16d2890c7f9ef1fe7e7a9 (diff) | |
download | cpython-20e72130c4054bb59aa3fe514522065003b0ed89.zip cpython-20e72130c4054bb59aa3fe514522065003b0ed89.tar.gz cpython-20e72130c4054bb59aa3fe514522065003b0ed89.tar.bz2 |
Fix typo in exception message
Diffstat (limited to 'Objects')
-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 cd081ad..ae27b7f 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; } |