aboutsummaryrefslogtreecommitdiff
path: root/Misc
diff options
context:
space:
mode:
authorErlend Egeberg Aasland <erlend.aasland@innova.no>2021-02-11 00:04:02 +0100
committerGitHub <noreply@github.com>2021-02-11 01:04:02 +0200
commitea46579067fd2d4e164d6605719ffec690c4d621 (patch)
tree0c47f143e62973981cdb7c8ae46afe5e75bafae9 /Misc
parentFix link to sqlite3 enable_shared_cache documentation (GH-24496) (diff)
downloadcpython-ea46579067fd2d4e164d6605719ffec690c4d621.tar.gz
cpython-ea46579067fd2d4e164d6605719ffec690c4d621.tar.bz2
cpython-ea46579067fd2d4e164d6605719ffec690c4d621.zip
bpo-40956: Fix segfault when Connection.backup is called without target (GH-24503)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2021-02-10-23-29-50.bpo-40956.LcAbwG.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2021-02-10-23-29-50.bpo-40956.LcAbwG.rst b/Misc/NEWS.d/next/Library/2021-02-10-23-29-50.bpo-40956.LcAbwG.rst
new file mode 100644
index 00000000000..e81922c0315
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2021-02-10-23-29-50.bpo-40956.LcAbwG.rst
@@ -0,0 +1,3 @@
+Fix segfault in :meth:`sqlite3.Connection.backup` if no argument was
+provided. The regression was introduced by GH-23838. Patch by
+Erlend E. Aasland.