From: Jia Junjie <62194633+jiajunjie@users.noreply.github.com> Date: Tue, 27 Sep 2022 07:25:13 +0000 (+0800) Subject: [3.10] gh-97567: Fixup cached_statements default value in sqlite3.connect docs (... X-Git-Tag: v3.10.8~102 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6a41d11657e5a2200fbdd782e8e2f45320ab6058;p=thirdparty%2FPython%2Fcpython.git [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 --- diff --git a/Doc/library/sqlite3.rst b/Doc/library/sqlite3.rst index 15a052b3d29e..01e600c1c0ba 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.