]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix link to sqlite3 enable_shared_cache documentation (GH-24496)
authorTom Forbes <tom@tomforb.es>
Wed, 10 Feb 2021 17:56:16 +0000 (17:56 +0000)
committerGitHub <noreply@github.com>
Wed, 10 Feb 2021 17:56:16 +0000 (19:56 +0200)
Doc/whatsnew/3.10.rst

index 96892ba3d37e1084fb41fbab88b876e4abbd9c96..ed2fd0eb0dda66934fc9916f2601133c0959d6be 100644 (file)
@@ -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`.)