Commit 87095af6 authored by Larry Hastings's avatar Larry Hastings

Issue #20274: Remove ignored and erroneous "kwargs" parameters from three

METH_VARARGS methods on _sqlite.Connection.
parent 001174d0
...@@ -10,6 +10,9 @@ Release date: tba ...@@ -10,6 +10,9 @@ Release date: tba
Core and Builtins Core and Builtins
----------------- -----------------
- Issue #20274: Remove ignored and erroneous "kwargs" parameters from three
METH_VARARGS methods on _sqlite.Connection.
- Issue #24096: Make warnings.warn_explicit more robust against mutation of the - Issue #24096: Make warnings.warn_explicit more robust against mutation of the
warnings.filters list. warnings.filters list.
......
...@@ -1287,7 +1287,7 @@ error: ...@@ -1287,7 +1287,7 @@ error:
return NULL; return NULL;
} }
PyObject* pysqlite_connection_execute(pysqlite_Connection* self, PyObject* args, PyObject* kwargs) PyObject* pysqlite_connection_execute(pysqlite_Connection* self, PyObject* args)
{ {
PyObject* cursor = 0; PyObject* cursor = 0;
PyObject* result = 0; PyObject* result = 0;
...@@ -1316,7 +1316,7 @@ error: ...@@ -1316,7 +1316,7 @@ error:
return cursor; return cursor;
} }
PyObject* pysqlite_connection_executemany(pysqlite_Connection* self, PyObject* args, PyObject* kwargs) PyObject* pysqlite_connection_executemany(pysqlite_Connection* self, PyObject* args)
{ {
PyObject* cursor = 0; PyObject* cursor = 0;
PyObject* result = 0; PyObject* result = 0;
...@@ -1345,7 +1345,7 @@ error: ...@@ -1345,7 +1345,7 @@ error:
return cursor; return cursor;
} }
PyObject* pysqlite_connection_executescript(pysqlite_Connection* self, PyObject* args, PyObject* kwargs) PyObject* pysqlite_connection_executescript(pysqlite_Connection* self, PyObject* args)
{ {
PyObject* cursor = 0; PyObject* cursor = 0;
PyObject* result = 0; PyObject* result = 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment