Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Add NEWS
  • Loading branch information
erlend-aasland committed May 9, 2022
commit e09fe1a5dcd9d65423c7af8996d4aff25866a3e4
7 changes: 7 additions & 0 deletions Doc/whatsnew/3.12.rst
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,13 @@ Deprecated
Removed
=======

* The following undocumented :mod:`sqlite3` features, deprecated in Python
3.10, are now removed:

* ``sqlite3.enable_shared_cache()``
* ``sqlite3.OptimizedUnicode``

(Contributed by Erlend E. Aasland in :gh:`92548`)


Porting to Python 3.12
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Remove undocumented :mod:`sqlite3` features deprecated in Python 3.10:

* ``sqlite3.enable_shared_cache()``
* ``sqlite3.OptimizedUnicode``

Patch by Erlend E. Aasland.