aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Forbes <tom@tomforb.es>2021-02-10 17:56:16 +0000
committerGitHub <noreply@github.com>2021-02-10 19:56:16 +0200
commit749d40a53f8bbb9bb9d4eda345e54e3b3be7b459 (patch)
tree102819db92a8f1022ddb89bdc9af46032dfb40da
parentbpo-42217: compiler: merge same co_code and co_linetable objects (GH-23056) (diff)
downloadcpython-749d40a53f8bbb9bb9d4eda345e54e3b3be7b459.tar.gz
cpython-749d40a53f8bbb9bb9d4eda345e54e3b3be7b459.tar.bz2
cpython-749d40a53f8bbb9bb9d4eda345e54e3b3be7b459.zip
Fix link to sqlite3 enable_shared_cache documentation (GH-24496)
-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 96892ba3d37..ed2fd0eb0dd 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`.)