summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorErlend E. Aasland <erlend.aasland@protonmail.com>2023-05-07 10:55:31 (GMT)
committerGitHub <noreply@github.com>2023-05-07 10:55:31 (GMT)
commita05bad3254e2ae5fdf558dfdb65899a2298d8ded (patch)
tree68baa25ee85b65327963610ecc5674815b17613f /Misc
parentcab1298a6022ddf12ddcdadd74bb8741650d8e9f (diff)
downloadcpython-a05bad3254e2ae5fdf558dfdb65899a2298d8ded.zip
cpython-a05bad3254e2ae5fdf558dfdb65899a2298d8ded.tar.gz
cpython-a05bad3254e2ae5fdf558dfdb65899a2298d8ded.tar.bz2
gh-100370: fix OverflowError in sqlite3.Connection.blobopen for 32-bit builds (#103902)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2023-04-27-00-45-41.gh-issue-100370.MgZ3KY.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2023-04-27-00-45-41.gh-issue-100370.MgZ3KY.rst b/Misc/NEWS.d/next/Library/2023-04-27-00-45-41.gh-issue-100370.MgZ3KY.rst
new file mode 100644
index 0000000..9022d55
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2023-04-27-00-45-41.gh-issue-100370.MgZ3KY.rst
@@ -0,0 +1,2 @@
+Fix potential :exc:`OverflowError` in :meth:`sqlite3.Connection.blobopen`
+for 32-bit builds. Patch by Erlend E. Aasland.