summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorErlend Egeberg Aasland <erlend.aasland@innova.no>2021-04-14 11:18:49 (GMT)
committerGitHub <noreply@github.com>2021-04-14 11:18:49 (GMT)
commit6f1e8ccffa5b1272a36a35405d3c4e4bbba0c082 (patch)
tree59b420c5e232bd9d6f2050ba0c7e1fb5754f0272 /Misc
parent333d10cbb53dd5f28d76f659a49bf0735f8509d8 (diff)
downloadcpython-6f1e8ccffa5b1272a36a35405d3c4e4bbba0c082.zip
cpython-6f1e8ccffa5b1272a36a35405d3c4e4bbba0c082.tar.gz
cpython-6f1e8ccffa5b1272a36a35405d3c4e4bbba0c082.tar.bz2
bpo-43752: Fix sqlite3 regression for zero-sized blobs with converters (GH-25228)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2021-04-06-21-18-29.bpo-43752.K7qmAF.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2021-04-06-21-18-29.bpo-43752.K7qmAF.rst b/Misc/NEWS.d/next/Library/2021-04-06-21-18-29.bpo-43752.K7qmAF.rst
new file mode 100644
index 0000000..ef4b953
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2021-04-06-21-18-29.bpo-43752.K7qmAF.rst
@@ -0,0 +1,3 @@
+Fix :mod:`sqlite3` regression for zero-sized blobs with converters, where
+``b""`` was returned instead of ``None``. The regression was introduced by
+GH-24723. Patch by Erlend E. Aasland.