diff options
author | Alex Henrie <alexhenrie24@gmail.com> | 2020-01-30 04:12:53 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-30 04:12:53 (GMT) |
commit | 188bb5b1e868eecf2342195dc45caa332ac3b6c7 (patch) | |
tree | 835c4b7e47472c37e121d22bc05aa56d2016d0fe /Modules/_sqlite/cursor.c | |
parent | 2e6569b6692298fcc9aae0df3eb3181adb2a5099 (diff) | |
download | cpython-188bb5b1e868eecf2342195dc45caa332ac3b6c7.zip cpython-188bb5b1e868eecf2342195dc45caa332ac3b6c7.tar.gz cpython-188bb5b1e868eecf2342195dc45caa332ac3b6c7.tar.bz2 |
bpo-39494: Remove extra null terminators from kwlist vars (GH-18267)
Diffstat (limited to 'Modules/_sqlite/cursor.c')
-rw-r--r-- | Modules/_sqlite/cursor.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_sqlite/cursor.c b/Modules/_sqlite/cursor.c index 45f5865..47dbc77 100644 --- a/Modules/_sqlite/cursor.c +++ b/Modules/_sqlite/cursor.c @@ -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; |