[New-bugs-announce] [issue8456] sqlite3.connect documentation is incorrect

AndiDog report at bugs.python.org
Mon Apr 19 13:31:32 CEST 2010


New submission from AndiDog <AndiDog at web.de>:

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; 
   }

----------
assignee: georg.brandl
components: Documentation
messages: 103578
nosy: AndiDog, georg.brandl
severity: normal
status: open
title: sqlite3.connect documentation is incorrect
versions: Python 2.6

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue8456>
_______________________________________


More information about the New-bugs-announce mailing list