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

This commit is contained in:
Erlend Egeberg Aasland 2021-05-03 00:10:51 +02:00 committed by GitHub
parent 5fb06edbbb
commit cbb7b9ed4a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 8 deletions

View File

@ -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,