diff options
author | Erlend E. Aasland <erlend@python.org> | 2023-08-27 22:18:32 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-27 22:18:32 (GMT) |
commit | d0160c7c22c8dff0a61c49b5304244df6e36465e (patch) | |
tree | 6604b133b8365249d7a768d133b86ee6c8bdf411 /Doc/whatsnew | |
parent | fecb9faf0b2df6a219696502a34b918c5d2bfe9d (diff) | |
download | cpython-d0160c7c22c8dff0a61c49b5304244df6e36465e.zip cpython-d0160c7c22c8dff0a61c49b5304244df6e36465e.tar.gz cpython-d0160c7c22c8dff0a61c49b5304244df6e36465e.tar.bz2 |
gh-64662: Add virtual table support to sqlite3.Connection.iterdump (#108340)
Co-authored-by: Aviv Palivoda <palaviv@gmail.com>
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/3.13.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.13.rst b/Doc/whatsnew/3.13.rst index 4ff12b1..2770207 100644 --- a/Doc/whatsnew/3.13.rst +++ b/Doc/whatsnew/3.13.rst @@ -165,6 +165,9 @@ sqlite3 object is not :meth:`closed <sqlite3.Connection.close>` explicitly. (Contributed by Erlend E. Aasland in :gh:`105539`.) +* Add support for virtual tables to :meth:`sqlite3.Connection.iterdump`. + (Contributed by Aviv Palivoda in :gh:`64662`.) + tkinter ------- |