summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2021-01-05 16:21:57 -0800
committerGitHub <noreply@github.com>2021-01-06 02:21:57 +0200
commit03a079f7cf8eacc29ea616060916e8a63ba6e5ba (patch)
treeed5ada4b09a02056e7c1c03bd7c19704ab3172e7
parentbpo-41837: Updated Windows installer to include OpenSSL 1.1.1i (GH-24125) (diff)
downloadcpython-03a079f7cf8eacc29ea616060916e8a63ba6e5ba.tar.gz
cpython-03a079f7cf8eacc29ea616060916e8a63ba6e5ba.tar.bz2
cpython-03a079f7cf8eacc29ea616060916e8a63ba6e5ba.zip
bpo-38413: Remove outdated section about multithreading in sqlite3 (GH-23159)
(cherry picked from commit f9949f82e17c88609adb53eff3a7d5cd63a645bd) Co-authored-by: Vladimir <greatvovan@gmail.com>
-rw-r--r--Doc/library/sqlite3.rst13
1 files changed, 0 insertions, 13 deletions
diff --git a/Doc/library/sqlite3.rst b/Doc/library/sqlite3.rst
index e4933244958..9459f917582 100644
--- a/Doc/library/sqlite3.rst
+++ b/Doc/library/sqlite3.rst
@@ -1093,19 +1093,6 @@ committed:
.. literalinclude:: ../includes/sqlite3/ctx_manager.py
-Common issues
--------------
-
-Multithreading
-^^^^^^^^^^^^^^
-
-Older SQLite versions had issues with sharing connections between threads.
-That's why the Python module disallows sharing connections and cursors between
-threads. If you still try to do so, you will get an exception at runtime.
-
-The only exception is calling the :meth:`~Connection.interrupt` method, which
-only makes sense to call from a different thread.
-
.. rubric:: Footnotes
.. [#f1] The sqlite3 module is not built with loadable extension support by