From eb4cb8ec8cf8f73b3a6a03ac7ecf60c33798934c Mon Sep 17 00:00:00 2001 From: "Erlend E. Aasland" Date: Mon, 23 Aug 2021 22:02:33 +0200 Subject: [PATCH] bpo-43853: Amend NEWS entry --- .../Library/2021-04-15-12-02-17.bpo-43853.XXCVAp.rst | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/Misc/NEWS.d/next/Library/2021-04-15-12-02-17.bpo-43853.XXCVAp.rst b/Misc/NEWS.d/next/Library/2021-04-15-12-02-17.bpo-43853.XXCVAp.rst index c5c3a0ae83c7f4a..a0164c4665a056c 100644 --- a/Misc/NEWS.d/next/Library/2021-04-15-12-02-17.bpo-43853.XXCVAp.rst +++ b/Misc/NEWS.d/next/Library/2021-04-15-12-02-17.bpo-43853.XXCVAp.rst @@ -1,3 +1,7 @@ -Improve :mod:`sqlite3` error handling: ``sqlite3_value_text()`` errors that -set ``SQLITE_NOMEM`` now raise :exc:`MemoryError`. Patch by Erlend E. -Aasland. +Improved string handling for :mod:`sqlite3` user-defined functions and +aggregates: + +* It is now possible to pass strings with embedded null characters to UDFs +* Conversion failures now correctly raise :exc:`MemoryError` + +Patch by Erlend E. Aasland.