From 95e6c53c54b395f8008ea97f62364a5cb39e9e82 Mon Sep 17 00:00:00 2001 From: Tom Forbes Date: Tue, 9 Feb 2021 20:55:42 +0000 Subject: [PATCH] Fix link to sqlite3 enable_shared_cache documentation --- Doc/whatsnew/3.10.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/whatsnew/3.10.rst b/Doc/whatsnew/3.10.rst index 96892ba3d37e10..ed2fd0eb0dda66 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`.)