gh-96165: Clarify passing ":memory:" in sqlite3.connect() (#106451)

This commit is contained in:
Mariusz Felisiak 2023-07-11 22:18:19 +02:00 committed by GitHub
parent fc7ff1af45
commit f520804b03
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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 <https://sqlite.org/inmemorydb.html>`_, and open a connection
to it.
:type database: :term:`path-like object`
:param float timeout: