New submission from AndiDog <andi...@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 <rep...@bugs.python.org>
<http://bugs.python.org/issue8456>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to