mirror of
https://github.com/python/cpython.git
synced 2025-08-31 05:58:33 +00:00
bpo-39494: Remove extra null terminators from kwlist vars (GH-18267)
This commit is contained in:
parent
2e6569b669
commit
188bb5b1e8
2 changed files with 3 additions and 3 deletions
|
@ -773,7 +773,7 @@ PyObject* pysqlite_cursor_fetchone(pysqlite_Cursor* self, PyObject* args)
|
|||
|
||||
PyObject* pysqlite_cursor_fetchmany(pysqlite_Cursor* self, PyObject* args, PyObject* kwargs)
|
||||
{
|
||||
static char *kwlist[] = {"size", NULL, NULL};
|
||||
static char *kwlist[] = {"size", NULL};
|
||||
|
||||
PyObject* row;
|
||||
PyObject* list;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue