diff options
author | Erlend Egeberg Aasland <erlend.aasland@innova.no> | 2021-06-04 18:34:00 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-04 18:34:00 (GMT) |
commit | 006fd869e4798b68e266f5de89c83ddb531a756b (patch) | |
tree | 07fc4e96b436ddb2725382cc5ec142f56233bcf4 /Misc/NEWS.d | |
parent | 8363ac8607eca7398e568e1336154e1262a995a0 (diff) | |
download | cpython-006fd869e4798b68e266f5de89c83ddb531a756b.zip cpython-006fd869e4798b68e266f5de89c83ddb531a756b.tar.gz cpython-006fd869e4798b68e266f5de89c83ddb531a756b.tar.bz2 |
bpo-43853: Handle sqlite3_value_text() errors (GH-25422)
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r-- | Misc/NEWS.d/next/Library/2021-04-15-12-02-17.bpo-43853.XXCVAp.rst | 3 |
1 files changed, 3 insertions, 0 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 new file mode 100644 index 0000000..c5c3a0a --- /dev/null +++ b/Misc/NEWS.d/next/Library/2021-04-15-12-02-17.bpo-43853.XXCVAp.rst @@ -0,0 +1,3 @@ +Improve :mod:`sqlite3` error handling: ``sqlite3_value_text()`` errors that +set ``SQLITE_NOMEM`` now raise :exc:`MemoryError`. Patch by Erlend E. +Aasland. |