From: Mariusz Felisiak Date: Tue, 11 Jul 2023 20:18:19 +0000 (+0200) Subject: gh-96165: Clarify passing ":memory:" in sqlite3.connect() (#106451) X-Git-Tag: v3.13.0a1~1428 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f520804b039df0d87fb9df6f1fed2a9bc9df8d61;p=thirdparty%2FPython%2Fcpython.git gh-96165: Clarify passing ":memory:" in sqlite3.connect() (#106451) --- diff --git a/Doc/library/sqlite3.rst b/Doc/library/sqlite3.rst index f6a8714519f5..356888d64b88 100644 --- a/Doc/library/sqlite3.rst +++ b/Doc/library/sqlite3.rst @@ -266,8 +266,9 @@ Module functions :param database: The path to the database file to be opened. - Pass ``":memory:"`` to open a connection to a database that is - in RAM instead of on disk. + You can pass ``":memory:"`` to create an `SQLite database existing only + in memory `_, and open a connection + to it. :type database: :term:`path-like object` :param float timeout: