bpo-42755: Fix sqlite3.Connection.backup docs (GH-23965) · python/cpython@abba83b

Original file line numberDiff line numberDiff line change

@@ -546,7 +546,7 @@ Connection Objects

546546

con.close()

547547
548548
549-

.. method:: backup(target, *, pages=0, progress=None, name="main", sleep=0.250)

549+

.. method:: backup(target, *, pages=-1, progress=None, name="main", sleep=0.250)

550550
551551

This method makes a backup of a SQLite database even while it's being accessed

552552

by other clients, or concurrently by the same connection. The copy will be