[Python-checkins] bpo-42755: Fix sqlite3.Connection.backup docs (GH-23965)

berkerpeksag webhook-mailer at python.org
Tue Jan 5 19:23:47 EST 2021


https://github.com/python/cpython/commit/28611c28474a7fafdcf7ea2712f2670dda940eef
commit: 28611c28474a7fafdcf7ea2712f2670dda940eef
branch: 3.8
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: berkerpeksag <berker.peksag at gmail.com>
date: 2021-01-06T02:23:37+02:00
summary:

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 <erlend.aasland at innova.no>

files:
M Doc/library/sqlite3.rst

diff --git a/Doc/library/sqlite3.rst b/Doc/library/sqlite3.rst
index 9459f9175827b..e2e7312c27735 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



More information about the Python-checkins mailing list