mirror of
https://github.com/python/cpython.git
synced 2026-01-06 15:32:22 +00:00
More unconsting.
This commit is contained in:
parent
f4e6928c4d
commit
02cbf4ae4b
9 changed files with 56 additions and 62 deletions
|
|
@ -26,7 +26,7 @@ static PyObject *_grouper_create(groupbyobject *, PyObject *);
|
|||
static PyObject *
|
||||
groupby_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
|
||||
{
|
||||
static const char *kwargs[] = {"iterable", "key", NULL};
|
||||
static char *kwargs[] = {"iterable", "key", NULL};
|
||||
groupbyobject *gbo;
|
||||
PyObject *it, *keyfunc = Py_None;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue