]> granicus.if.org Git - python/commitdiff
Typo reported by Greg Stein: "modifiable" is the correct spelling.
authorGuido van Rossum <guido@python.org>
Thu, 1 Oct 1998 15:59:48 +0000 (15:59 +0000)
committerGuido van Rossum <guido@python.org>
Thu, 1 Oct 1998 15:59:48 +0000 (15:59 +0000)
Objects/stringobject.c

index dffc8e0e1a4a1ec747cad0bd3d8adc092adb134a..648e6e2a486f1d666a8e69485f14a98071451f61 100644 (file)
@@ -479,7 +479,7 @@ string_buffer_getwritebuf(self, index, ptr)
        const void **ptr;
 {
        PyErr_SetString(PyExc_TypeError,
-                       "Cannot use string as modifyable buffer");
+                       "Cannot use string as modifiable buffer");
        return -1;
 }