From 6a41d11657e5a2200fbdd782e8e2f45320ab6058 Mon Sep 17 00:00:00 2001 From: Jia Junjie <62194633+jiajunjie@users.noreply.github.com> Date: Tue, 27 Sep 2022 15:25:13 +0800 Subject: [3.10] gh-97567: Fixup cached_statements default value in sqlite3.connect docs (#97568) This docs inconsistency was introduced by the 3.10 backport of gh-94629: gh-94646 --- 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 15a052b..01e600c 100644 --- a/Doc/library/sqlite3.rst +++ b/Doc/library/sqlite3.rst @@ -257,7 +257,7 @@ Module functions .. function:: connect(database, timeout=5.0, detect_types=0, \ isolation_level="DEFERRED", check_same_thread=True, \ - factory=sqlite3.Connection, cached_statements=128, \ + factory=sqlite3.Connection, cached_statements=100, \ uri=False) Open a connection to an SQLite database. -- cgit v0.12