From 49af04e5f18dc88fa2356acf9bac7e805dad6140 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20v=2E=20L=C3=B6wis?= Date: Mon, 27 Feb 2006 16:46:16 +0000 Subject: Revert backwards-incompatible const changes. --- Objects/stringobject.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Objects/stringobject.c') diff --git a/Objects/stringobject.c b/Objects/stringobject.c index 8480308374..4fe24a3457 100644 --- a/Objects/stringobject.c +++ b/Objects/stringobject.c @@ -3346,7 +3346,7 @@ static PyObject * string_new(PyTypeObject *type, PyObject *args, PyObject *kwds) { PyObject *x = NULL; - static const char *kwlist[] = {"object", 0}; + static char *kwlist[] = {"object", 0}; if (type != &PyString_Type) return str_subtype_new(type, args, kwds); -- cgit v1.2.1