[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
This commit is contained in:
Jia Junjie 2022-09-27 15:25:13 +08:00 committed by GitHub
parent 232156144c
commit 6a41d11657
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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.