summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew
diff options
context:
space:
mode:
authorEmanuele Gaifas <lelegaifax@gmail.com>2018-03-10 22:08:31 (GMT)
committerBerker Peksag <berker.peksag@gmail.com>2018-03-10 22:08:31 (GMT)
commitd7aed4102d2a40c74553240c7f03585624d27aea (patch)
treef65be332675189f8a73fbfdf543c28a23f96a795 /Doc/whatsnew
parentc10b288f345aaef66d2c844924b9a576f9ea4f8b (diff)
downloadcpython-d7aed4102d2a40c74553240c7f03585624d27aea.zip
cpython-d7aed4102d2a40c74553240c7f03585624d27aea.tar.gz
cpython-d7aed4102d2a40c74553240c7f03585624d27aea.tar.bz2
bpo-27645: Add support for native backup facility of SQLite (GH-4238)
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r--Doc/whatsnew/3.7.rst9
1 files changed, 9 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.7.rst b/Doc/whatsnew/3.7.rst
index 76e1f7b..fc5f5ab 100644
--- a/Doc/whatsnew/3.7.rst
+++ b/Doc/whatsnew/3.7.rst
@@ -630,6 +630,15 @@ can be set within the scope of a group.
``'^$'`` or ``(?=-)`` that matches an empty string.
(Contributed by Serhiy Storchaka in :issue:`25054`.)
+
+sqlite3
+-------
+
+:class:`sqlite3.Connection` now exposes a :class:`~sqlite3.Connection.backup`
+method, if the underlying SQLite library is at version 3.6.11 or higher.
+(Contributed by Lele Gaifax in :issue:`27645`.)
+
+
ssl
---