diff options
author | Vladimir <greatvovan@gmail.com> | 2021-01-06 00:18:46 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-06 00:18:46 (GMT) |
commit | f9949f82e17c88609adb53eff3a7d5cd63a645bd (patch) | |
tree | 3a71dbd7f5106e4e1233fb4ae2bd011e05db128f /Doc/library | |
parent | cf0b23908cc902ac38cd83dd7ca5afdf89e1543b (diff) | |
download | cpython-f9949f82e17c88609adb53eff3a7d5cd63a645bd.zip cpython-f9949f82e17c88609adb53eff3a7d5cd63a645bd.tar.gz cpython-f9949f82e17c88609adb53eff3a7d5cd63a645bd.tar.bz2 |
bpo-38413: Remove outdated section about multithreading in sqlite3 (GH-23159)
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/sqlite3.rst | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/Doc/library/sqlite3.rst b/Doc/library/sqlite3.rst index 5f9a26a..d80e952 100644 --- a/Doc/library/sqlite3.rst +++ b/Doc/library/sqlite3.rst @@ -1089,19 +1089,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 |