From 1c616a5c92b9d9dee90570edefe708358ed47f45 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Sat, 10 Jul 2010 12:01:34 +0000 Subject: [PATCH] #8456: fix signature of sqlite3.connect(). --- Doc/library/sqlite3.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/sqlite3.rst b/Doc/library/sqlite3.rst index d9fe5aa180..89fa58e6d4 100644 --- a/Doc/library/sqlite3.rst +++ b/Doc/library/sqlite3.rst @@ -136,7 +136,7 @@ Module functions and constants 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 -- 2.40.0