diff options
author | Georg Brandl <georg@python.org> | 2010-07-10 12:01:34 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-07-10 12:01:34 (GMT) |
commit | 1c616a5c92b9d9dee90570edefe708358ed47f45 (patch) | |
tree | 98b9396c989027932c86862bc52877898fb6496f /Doc/library/sqlite3.rst | |
parent | 47d48bb3e7611b20649c4a2a5e205d57cf134d2b (diff) | |
download | cpython-1c616a5c92b9d9dee90570edefe708358ed47f45.zip cpython-1c616a5c92b9d9dee90570edefe708358ed47f45.tar.gz cpython-1c616a5c92b9d9dee90570edefe708358ed47f45.tar.bz2 |
#8456: fix signature of sqlite3.connect().
Diffstat (limited to 'Doc/library/sqlite3.rst')
-rw-r--r-- | Doc/library/sqlite3.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/sqlite3.rst b/Doc/library/sqlite3.rst index d9fe5aa..89fa58e 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 |