[Python-checkins] r82763 - python/branches/py3k/Doc/library/sqlite3.rst

georg.brandl python-checkins at python.org
Sat Jul 10 14:01:35 CEST 2010


Author: georg.brandl
Date: Sat Jul 10 14:01:34 2010
New Revision: 82763

Log:
#8456: fix signature of sqlite3.connect().

Modified:
   python/branches/py3k/Doc/library/sqlite3.rst

Modified: python/branches/py3k/Doc/library/sqlite3.rst
==============================================================================
--- python/branches/py3k/Doc/library/sqlite3.rst	(original)
+++ python/branches/py3k/Doc/library/sqlite3.rst	Sat Jul 10 14:01:34 2010
@@ -136,7 +136,7 @@
    first blank for the column name: the column name would simply be "x".
 
 
-.. function:: connect(database[, timeout, isolation_level, detect_types, factory])
+.. function:: connect(database[, timeout, detect_types, isolation_level, check_same_thread, factory, cached_statements])
 
    Opens a connection to the SQLite database file *database*. You can use
    ``":memory:"`` to open a database connection to a database that resides in RAM


More information about the Python-checkins mailing list