From b62b8da32e65866a1ef943633172846278ddc569 Mon Sep 17 00:00:00 2001 From: "Erlend E. Aasland" Date: Sun, 27 Dec 2020 11:16:17 +0100 Subject: [PATCH] bpo-42755: Fix sqlite3.Connection.backup docs The `pages` argument default value now reflects the implementation. --- Doc/library/sqlite3.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/sqlite3.rst b/Doc/library/sqlite3.rst index c36648775a615e..950df60b2027de 100644 --- a/Doc/library/sqlite3.rst +++ b/Doc/library/sqlite3.rst @@ -546,7 +546,7 @@ Connection Objects con.close() - .. method:: backup(target, *, pages=0, progress=None, name="main", sleep=0.250) + .. method:: backup(target, *, pages=-1, progress=None, name="main", sleep=0.250) This method makes a backup of a SQLite database even while it's being accessed by other clients, or concurrently by the same connection. The copy will be