any keyword arguments. Previously it silently ignored them.
Also: merge related change from 3.4, also reported on Issue #20274.
Core and Builtins
-----------------
++- Issue #20274: When calling a _sqlite.Connection, it now complains if passed
++ any keyword arguments. Previously it silently ignored them.
++
+ - Issue #20274: Remove ignored and erroneous "kwargs" parameters from three
+ METH_VARARGS methods on _sqlite.Connection.
+
+- Issue #2292: PEP 448: Additional Unpacking Generalizations.
+
- Issue #24096: Make warnings.warn_explicit more robust against mutation of the
warnings.filters list.
return NULL;
}
++ if (!_PyArg_NoKeywords(MODULE_NAME ".Connection()", kwargs))
++ return NULL;
++
if (!PyArg_ParseTuple(args, "O", &sql))
return NULL;