From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Sun, 27 Dec 2020 22:56:41 +0000 (-0800) Subject: bpo-42755: Fix sqlite3.Connection.backup docs (GH-23965) X-Git-Tag: v3.9.2rc1~95 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9f6a37cc072dab9f9a13d491d3592d23d9809d2b;p=thirdparty%2FPython%2Fcpython.git bpo-42755: Fix sqlite3.Connection.backup docs (GH-23965) The `pages` argument default value now reflects the implementation. (cherry picked from commit abba83b4b91f78dc556dc0b7700ecb46cba22c01) Co-authored-by: Erlend Egeberg Aasland --- diff --git a/Doc/library/sqlite3.rst b/Doc/library/sqlite3.rst index b97414e6fcaa..fc9ad2e113e1 100644 --- a/Doc/library/sqlite3.rst +++ b/Doc/library/sqlite3.rst @@ -545,7 +545,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