summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorErlend Egeberg Aasland <erlend.aasland@innova.no>2021-04-14 21:09:11 (GMT)
committerGitHub <noreply@github.com>2021-04-14 21:09:11 (GMT)
commit5cb601f956886b32641f818b5da347cc86a43db2 (patch)
tree4205f0ff5fced33357820c8382d8ca0ee5a0433d /Misc
parente07f4ab26aaf08f90ebd9e6004af14fd6ef39351 (diff)
downloadcpython-5cb601f956886b32641f818b5da347cc86a43db2.zip
cpython-5cb601f956886b32641f818b5da347cc86a43db2.tar.gz
cpython-5cb601f956886b32641f818b5da347cc86a43db2.tar.bz2
bpo-43296: Handle sqlite3_value_blob() errors (GH-24674)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2021-03-01-13-01-33.bpo-43296.p_gU6T.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2021-03-01-13-01-33.bpo-43296.p_gU6T.rst b/Misc/NEWS.d/next/Library/2021-03-01-13-01-33.bpo-43296.p_gU6T.rst
new file mode 100644
index 0000000..741dfcd
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2021-03-01-13-01-33.bpo-43296.p_gU6T.rst
@@ -0,0 +1,3 @@
+Improve :mod:`sqlite3` error handling: ``sqlite3_value_blob()`` errors that
+set ``SQLITE_NOMEM`` now raise :exc:`MemoryError`. Patch by Erlend E.
+Aasland.