File tree Expand file tree Collapse file tree 2 files changed +9
-6
lines changed Expand file tree Collapse file tree 2 files changed +9
-6
lines changed Original file line number Diff line number Diff line change @@ -1231,12 +1231,6 @@ Add audit events for :func:`~sqlite3.connect/handle`,
12311231:meth:`~ sqlite3.Connection.load_extension` .
12321232(Contributed by Erlend E. Aasland in :issue:`43762 ` .)
12331233
1234- :mod:`sqlite3` now utilizes :meth:`functools.lru_cache` to implement the
1235- connection statement cache. The statement cache can be accessed via the new
1236- method :meth:`sqlite3.Connection.statement_cache` . As a small optimisation, the
1237- default statement cache size has been increased from 100 to 128 .
1238- (Contributed by Erlend E. Aasland in :issue:`42862 ` .)
1239-
12401234sys
12411235-- -
12421236
Original file line number Diff line number Diff line change @@ -86,6 +86,15 @@ New Modules
8686Improved Modules
8787================
8888
89+ sqlite3
90+ -------
91+
92+ :mod: `sqlite3 ` now utilizes :meth: `functools.lru_cache ` to implement the
93+ connection statement cache. The statement cache can be accessed via the new
94+ method :meth: `sqlite3.Connection.statement_cache `. As a small optimisation, the
95+ default statement cache size has been increased from 100 to 128.
96+ (Contributed by Erlend E. Aasland in :issue: `42862 `.)
97+
8998
9099Optimizations
91100=============
You can’t perform that action at this time.
0 commit comments