Revert backwards-incompatible const changes.

This commit is contained in:
Martin v. Löwis 2006-02-27 16:46:16 +00:00
parent f9f61b4aa2
commit 15e62742fa
36 changed files with 71 additions and 70 deletions

View file

@ -829,7 +829,7 @@ complex_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
Py_complex cr, ci;
int own_r = 0;
static PyObject *complexstr;
static const char *kwlist[] = {"real", "imag", 0};
static char *kwlist[] = {"real", "imag", 0};
r = Py_False;
i = NULL;