From: Tom Forbes Date: Wed, 10 Feb 2021 17:56:16 +0000 (+0000) Subject: Fix link to sqlite3 enable_shared_cache documentation (GH-24496) X-Git-Tag: v3.10.0a6~101 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=749d40a53f8bbb9bb9d4eda345e54e3b3be7b459;p=thirdparty%2FPython%2Fcpython.git Fix link to sqlite3 enable_shared_cache documentation (GH-24496) --- diff --git a/Doc/whatsnew/3.10.rst b/Doc/whatsnew/3.10.rst index 96892ba3d37e..ed2fd0eb0dda 100644 --- a/Doc/whatsnew/3.10.rst +++ b/Doc/whatsnew/3.10.rst @@ -644,7 +644,7 @@ Deprecated * The undocumented built-in function ``sqlite3.enable_shared_cache`` is now deprecated, scheduled for removal in Python 3.12. Its use is strongly discouraged by the SQLite3 documentation. See `the SQLite3 docs - `_ for more details. + `_ for more details. If shared cache must be used, open the database in URI mode using the ``cache=shared`` query parameter. (Contributed by Erlend E. Aasland in :issue:`24464`.)