File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -1143,12 +1143,12 @@ Connection objects
1143
1143
Useful when saving an in-memory database for later restoration.
1144
1144
Similar to the ``.dump `` command in the :program: `sqlite3 ` shell.
1145
1145
1146
- :param entrypoint :
1146
+ :param filter :
1147
1147
1148
1148
An optional ``LIKE `` pattern for database objects to dump, e.g. ``prefix_% ``.
1149
1149
If ``None `` (the default), all database objects will be included.
1150
1150
1151
- :type entrypoint : str | None
1151
+ :type filter : str | None
1152
1152
1153
1153
Example:
1154
1154
Original file line number Diff line number Diff line change @@ -375,6 +375,10 @@ sqlite3
375
375
object is not :meth: `closed <sqlite3.Connection.close> ` explicitly.
376
376
(Contributed by Erlend E. Aasland in :gh: `105539 `.)
377
377
378
+ * Add *filter * keyword-only parameter to :meth: `sqlite3.Connection.iterdump `
379
+ for filtering database objects to dump.
380
+ (Contributed by Mariusz Felisiak in :gh: `91602 `.)
381
+
378
382
subprocess
379
383
----------
380
384
Original file line number Diff line number Diff line change 1
- Added `` filter `` keyword-only parameter to
1
+ Add * filter * keyword-only parameter to
2
2
:meth: `sqlite3.Connection.iterdump ` for filtering database objects to dump.
3
3
Patch by Mariusz Felisiak.
You can’t perform that action at this time.
0 commit comments