Commit 01b08836 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 7e63b36f
......@@ -10,6 +10,9 @@ Release date: tba
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
warnings.filters list.
......
......@@ -1287,7 +1287,7 @@ error:
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* result = 0;
......@@ -1316,7 +1316,7 @@ error:
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* result = 0;
......@@ -1345,7 +1345,7 @@ error:
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* 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