Skip to content
Snippets Groups Projects
Unverified Commit cbb7b9ed authored by Erlend Egeberg Aasland's avatar Erlend Egeberg Aasland Committed by GitHub
Browse files

bpo-43434: Clean up sqlite3.connect() after GH-25818 (GH-25823)

parent 5fb06edb
No related branches found
No related tags found
No related merge requests found
......@@ -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,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment