diff options
Diffstat (limited to 'Objects/boolobject.c')
-rw-r--r-- | Objects/boolobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/boolobject.c b/Objects/boolobject.c index 677a98b..f2429fe 100644 --- a/Objects/boolobject.c +++ b/Objects/boolobject.c @@ -50,7 +50,7 @@ PyObject *PyBool_FromLong(long ok) static PyObject * bool_new(PyTypeObject *type, PyObject *args, PyObject *kwds) { - static const char *kwlist[] = {"x", 0}; + static char *kwlist[] = {"x", 0}; PyObject *x = Py_False; long ok; |