summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorErlend Egeberg Aasland <erlend.aasland@innova.no>2022-04-05 14:15:25 (GMT)
committerGitHub <noreply@github.com>2022-04-05 14:15:25 (GMT)
commita7551247e7cb7010fb4735281f1afa4abeb8a9cc (patch)
tree299c8b5dc3965692a2be95bc657c6d5f81ded105 /Misc
parentaa0f056a00c4bcaef83d729e042359ddae903382 (diff)
downloadcpython-a7551247e7cb7010fb4735281f1afa4abeb8a9cc.zip
cpython-a7551247e7cb7010fb4735281f1afa4abeb8a9cc.tar.gz
cpython-a7551247e7cb7010fb4735281f1afa4abeb8a9cc.tar.bz2
bpo-41930: Add support for SQLite serialise/deserialise API (GH-26728)
Co-authored-by: Jelle Zijlstra <jelle.zijlstra@gmail.com> Co-authored-by: Kumar Aditya <59607654+kumaraditya303@users.noreply.github.com>
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2021-06-17-00-02-58.bpo-41930.JS6fsd.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2021-06-17-00-02-58.bpo-41930.JS6fsd.rst b/Misc/NEWS.d/next/Library/2021-06-17-00-02-58.bpo-41930.JS6fsd.rst
new file mode 100644
index 0000000..ce494e7
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2021-06-17-00-02-58.bpo-41930.JS6fsd.rst
@@ -0,0 +1,3 @@
+Add :meth:`~sqlite3.Connection.serialize` and
+:meth:`~sqlite3.Connection.deserialize` support to :mod:`sqlite3`. Patch by
+Erlend E. Aasland.