diff options
author | Erlend Egeberg Aasland <erlend.aasland@innova.no> | 2021-08-25 19:26:28 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-25 19:26:28 (GMT) |
commit | 0ec17a2494412ea7d76f7d0567b73c1fffa88c18 (patch) | |
tree | 73a5f95fdf7e97ecc248424abbc5fd3ba14cf17a | |
parent | 52702e8ba0d777ac92ec36038213976545c4759e (diff) | |
download | cpython-0ec17a2494412ea7d76f7d0567b73c1fffa88c18.zip cpython-0ec17a2494412ea7d76f7d0567b73c1fffa88c18.tar.gz cpython-0ec17a2494412ea7d76f7d0567b73c1fffa88c18.tar.bz2 |
[3.9] bpo-43853: Amend NEWS entry for latest changes in sqlite3 (GH-27922) (GH-27952)
(cherry picked from commit 7903a1096343d8018e889029f025d39bdd077170)
Co-authored-by: Erlend Egeberg Aasland <erlend.aasland@innova.no>
-rw-r--r-- | Misc/NEWS.d/next/Library/2021-04-15-12-02-17.bpo-43853.XXCVAp.rst | 10 |
1 files 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 c5c3a0a..a0164c4 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. |