From cbb7b9ed4a6069a2cb2e2f809926c2cfa332a493 Mon Sep 17 00:00:00 2001 From: Erlend Egeberg Aasland Date: Mon, 3 May 2021 00:10:51 +0200 Subject: bpo-43434: Clean up sqlite3.connect() after GH-25818 (GH-25823) --- Modules/_sqlite/module.c | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/Modules/_sqlite/module.c b/Modules/_sqlite/module.c index 3249946..a5e5525 100644 --- a/Modules/_sqlite/module.c +++ b/Modules/_sqlite/module.c @@ -77,8 +77,6 @@ static PyObject* module_connect(PyObject* self, PyObject* args, PyObject* int uri = 0; double timeout = 5.0; - PyObject* result; - if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O|diOiOip", kwlist, &database, &timeout, &detect_types, &isolation_level, &check_same_thread, @@ -91,12 +89,7 @@ static PyObject* module_connect(PyObject* self, PyObject* args, PyObject* factory = (PyObject*)pysqlite_ConnectionType; } - result = PyObject_Call(factory, args, kwargs); - if (result == NULL) { - return NULL; - } - - return result; + return PyObject_Call(factory, args, kwargs); } PyDoc_STRVAR(module_connect_doc, -- cgit v0.12