Issue 8456: sqlite3.connect documentation is incorrect (original) (raw)

The sqlite3.connect documentation (keyword args) is incorrect:

sqlite3.connect(database[, timeout, isolation_level, detect_types, factory])

As opposed to the C implementation:

if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O|diOiOi", kwlist,
                                 &database, &timeout, detect_types, &isolation_level, &check_same_thread, &factory, &cached_statements))
{
    return NULL; 

}