diff options
author | Jia Junjie <62194633+jiajunjie@users.noreply.github.com> | 2022-09-27 07:25:13 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-27 07:25:13 (GMT) |
commit | 6a41d11657e5a2200fbdd782e8e2f45320ab6058 (patch) | |
tree | b6c73ebacd96a9d90c79cf7c3a5ba4548676d17f /Doc/library | |
parent | 232156144c47a49abc33c4b294546bbb7e1829d3 (diff) | |
download | cpython-6a41d11657e5a2200fbdd782e8e2f45320ab6058.zip cpython-6a41d11657e5a2200fbdd782e8e2f45320ab6058.tar.gz cpython-6a41d11657e5a2200fbdd782e8e2f45320ab6058.tar.bz2 |
[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
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/sqlite3.rst | 2 |
1 files changed, 1 insertions, 1 deletions
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. |