Skip to content
Merged
Prev Previous commit
Next Next commit
Add NEWS and What's New
  • Loading branch information
Erlend E. Aasland committed Oct 26, 2021
commit 9747c80eb7bac7c8116fe222a99e5b5f487026ff
6 changes: 6 additions & 0 deletions Doc/whatsnew/3.11.rst
Original file line number Diff line number Diff line change
Expand Up @@ -248,6 +248,12 @@ sqlite3
(Contributed by Aviv Palivoda, Daniel Shahaf, and Erlend E. Aasland in
:issue:`16379`.)

* :mod:`sqlite3` now sets :attr:`sqlite3.threadsafety` dynamically, based on
the default threaded mode the underlying SQLite library has been compiled
with.
(Contributed by Erlend E. Aasland in :issue:`45613`.)


threading
---------

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
:mod:`sqlite3` now sets :attr:`sqlite3.threadsafety` dynamically, based on
the default threaded mode the underlying SQLite library has been compiled
with. Patch by Erlend E. Aasland.