summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorTom Forbes <tom@tomforb.es>2021-02-10 17:56:16 (GMT)
committerGitHub <noreply@github.com>2021-02-10 17:56:16 (GMT)
commit749d40a53f8bbb9bb9d4eda345e54e3b3be7b459 (patch)
tree102819db92a8f1022ddb89bdc9af46032dfb40da /Doc
parentbdb941be423bde8b02a5695ccf51c303d6204bed (diff)
downloadcpython-749d40a53f8bbb9bb9d4eda345e54e3b3be7b459.zip
cpython-749d40a53f8bbb9bb9d4eda345e54e3b3be7b459.tar.gz
cpython-749d40a53f8bbb9bb9d4eda345e54e3b3be7b459.tar.bz2
Fix link to sqlite3 enable_shared_cache documentation (GH-24496)
Diffstat (limited to 'Doc')
-rw-r--r--Doc/whatsnew/3.10.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/whatsnew/3.10.rst b/Doc/whatsnew/3.10.rst
index 96892ba..ed2fd0e 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
- <https://sqlite.org/c3ref/enable_shared_cache.html/>`_ for more details.
+ <https://sqlite.org/c3ref/enable_shared_cache.html>`_ 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`.)