diff options
author | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2024-02-06 11:34:56 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-06 11:34:56 (GMT) |
commit | 1a10437a14b13100bdf41cbdab819c33258deb65 (patch) | |
tree | 1810d94e1a64b264d28865f5cab1cf08b13c38ea /Doc/whatsnew | |
parent | 4bf41879d03b1da3c6d38c39a04331e3ae2e7545 (diff) | |
download | cpython-1a10437a14b13100bdf41cbdab819c33258deb65.zip cpython-1a10437a14b13100bdf41cbdab819c33258deb65.tar.gz cpython-1a10437a14b13100bdf41cbdab819c33258deb65.tar.bz2 |
gh-91602: Add iterdump() support for filtering database objects (#114501)
Add optional 'filter' parameter to iterdump() that allows a "LIKE"
pattern for filtering database objects to dump.
Co-authored-by: Erlend E. Aasland <erlend@python.org>
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/3.13.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.13.rst b/Doc/whatsnew/3.13.rst index 5e5f1e2..3727577 100644 --- a/Doc/whatsnew/3.13.rst +++ b/Doc/whatsnew/3.13.rst @@ -438,6 +438,10 @@ sqlite3 object is not :meth:`closed <sqlite3.Connection.close>` explicitly. (Contributed by Erlend E. Aasland in :gh:`105539`.) +* Add *filter* keyword-only parameter to :meth:`sqlite3.Connection.iterdump` + for filtering database objects to dump. + (Contributed by Mariusz Felisiak in :gh:`91602`.) + subprocess ---------- |