mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
Revert backwards-incompatible const changes.
This commit is contained in:
parent
f9f61b4aa2
commit
15e62742fa
36 changed files with 71 additions and 70 deletions
|
@ -940,7 +940,7 @@ static PyObject *
|
|||
float_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
|
||||
{
|
||||
PyObject *x = Py_False; /* Integer zero */
|
||||
static const char *kwlist[] = {"x", 0};
|
||||
static char *kwlist[] = {"x", 0};
|
||||
|
||||
if (type != &PyFloat_Type)
|
||||
return float_subtype_new(type, args, kwds); /* Wimp out */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue