summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2024-02-06 11:34:56 (GMT)
committerGitHub <noreply@github.com>2024-02-06 11:34:56 (GMT)
commit1a10437a14b13100bdf41cbdab819c33258deb65 (patch)
tree1810d94e1a64b264d28865f5cab1cf08b13c38ea /Misc
parent4bf41879d03b1da3c6d38c39a04331e3ae2e7545 (diff)
downloadcpython-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 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2024-01-24-20-51-49.gh-issue-91602.8fOH8l.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2024-01-24-20-51-49.gh-issue-91602.8fOH8l.rst b/Misc/NEWS.d/next/Library/2024-01-24-20-51-49.gh-issue-91602.8fOH8l.rst
new file mode 100644
index 0000000..21d39df
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2024-01-24-20-51-49.gh-issue-91602.8fOH8l.rst
@@ -0,0 +1,3 @@
+Add *filter* keyword-only parameter to
+:meth:`sqlite3.Connection.iterdump` for filtering database objects to dump.
+Patch by Mariusz Felisiak.