From: Erlend Egeberg Aasland Date: Thu, 16 Jun 2022 14:00:43 +0000 (+0200) Subject: gh-92547: Amend What's New (#93872) X-Git-Tag: v3.12.0a1~1236 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d5be9a5dff6d86a531417d95fa5ee5297fc81b5c;p=thirdparty%2FPython%2Fcpython.git gh-92547: Amend What's New (#93872) --- diff --git a/Doc/whatsnew/3.12.rst b/Doc/whatsnew/3.12.rst index 59eb4348cdca..99b8a14468ff 100644 --- a/Doc/whatsnew/3.12.rst +++ b/Doc/whatsnew/3.12.rst @@ -184,6 +184,14 @@ Removed * ``sqlite3.enable_shared_cache()`` * ``sqlite3.OptimizedUnicode`` + If a shared cache must be used, open the database in URI mode using the + ``cache=shared`` query parameter. + + The ``sqlite3.OptimizedUnicode`` text factory has been an alias for + :class:`str` since Python 3.3. Code that previously set the text factory to + ``OptimizedUnicode`` can either use ``str`` explicitly, or rely on the + default value which is also ``str``. + (Contributed by Erlend E. Aasland in :gh:`92548`) * The ``--experimental-isolated-subinterpreters`` configure flag