From 9dd799081ed809b09907cc5c30d24cadfa0158b0 Mon Sep 17 00:00:00 2001 From: Mariusz Felisiak Date: Wed, 5 Jul 2023 13:55:49 +0200 Subject: [PATCH] gh-96165: Clarify passing ":memory:" in sqlite3.connect(). --- Doc/library/sqlite3.rst | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Doc/library/sqlite3.rst b/Doc/library/sqlite3.rst index bc69387fca8a93..b4ad73824e96bf 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: